Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moberwasserlechner/jasypt-gradle-plugin
Jasypt value encryption/decryption plugin for Gradle 4.10+
https://github.com/moberwasserlechner/jasypt-gradle-plugin
decrypt encrypt encryptable-properties gradle gradle-plugin jasypt
Last synced: 3 months ago
JSON representation
Jasypt value encryption/decryption plugin for Gradle 4.10+
- Host: GitHub
- URL: https://github.com/moberwasserlechner/jasypt-gradle-plugin
- Owner: moberwasserlechner
- License: mit
- Created: 2019-08-24T12:43:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-25T05:52:08.000Z (over 2 years ago)
- Last Synced: 2023-03-12T07:03:42.117Z (almost 2 years ago)
- Topics: decrypt, encrypt, encryptable-properties, gradle, gradle-plugin, jasypt
- Language: Java
- Homepage:
- Size: 70.3 KB
- Stars: 6
- Watchers: 2
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Jasypt gradle plugin
[![Download](https://img.shields.io/bintray/v/moberwasserlechner/maven/jasypt-gradle-plugin.svg)](https://bintray.com/moberwasserlechner/maven/jasypt-gradle-plugin/_latestVersion)
[![Travis](https://img.shields.io/travis/moberwasserlechner/jasypt-gradle-plugin/master.svg?maxAge=2592000)](https://travis-ci.org/moberwasserlechner/jasypt-gradle-plugin)
[![Twitter Follow](https://img.shields.io/twitter/follow/michaelowl_web.svg?style=social&label=Follow&style=flat-square)](https://twitter.com/michaelowl_web)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/moberwasserlechner)This plugin was inspired by "mowedgrass/jasypt-gradle-boot".
This plugin works with Gradle 4.10+ and does not have a dependency to Spring Boot but can be used with it. It only depends on Jasypt.
I wrote it especially for the usage with "ulisesbocchio/jasypt-spring-boot" as I needed to encrypt my credentials somehow.
## Usage
Add a `buildscript` block to the top of your `build.gradle` :
```
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.byteowls:jasypt-gradle-plugin:1.0.1"
}
}
```
Apply the plugin by adding that to your `build.gradle`
```
apply plugin: "com.byteowls.jasypt"
```
**Note**: This plugin can not be discovered within the `plugin` block right now but `apply plugin: ...` and the `plugin` block can coexist beside each other.Run `./gradlew tasks´ to ensure that the plugin is loaded.
## Tasks
All below tasks need the `--password` option to work.
Use `--strong-encryption` option so the `StrongTextEncryptor` is used internally which runs a high-strength algorithm.
(you may need to download and install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files to use it).### encryptProperties
Search recursively for all `.properties` files for values wrapped with `ENCRYPT()` and encrypted the values.
```
./gradlew encryptProperties --password=encryptor_password
```
Search recursively for non production property files and encrypt their wrapped values.
```
./gradlew encryptProperties --file-filter-pattern='application-((?!prod).*)\.properties' --password=encryptor_password
```
The original files are always backed up unless you add `--no-backup`.### encryptText
```
./gradlew encryptText --text=hello --password=encryptor_password
```### decryptProperties
Search recursively for all `.properties` files for values wrapped with `ENC()` and decrypted the values.
```
./gradlew decryptProperties --password=encryptor_password
```
Search recursively for non production property files and decrypt their wrapped values.
```
./gradlew decryptProperties --file-filter-pattern='application-((?!prod).*)\.properties' --password=encryptor_password
```
The original files are always backed up unless you add `--no-backup`.### decryptText
```
./gradlew decryptText --text=UjNjJVq8ly/oU3JGMNiQXw== --password=encryptor_password
```## Changelog
See [CHANGELOG](https://github.com/moberwasserlechner/jasypt-gradle-plugin/blob/master/CHANGELOG.md).## License
MIT. Please see [LICENSE](https://github.com/moberwasserlechner/jasypt-gradle-plugin/blob/master/LICENSE).