io.github.ximtech.jasypt-encrypt-plugin
Owner: Stanislav Vodolagin
Property and Yaml encryption/decryption with configuration
https://github.com/ximtech/jasypt-encrypt-plugin
Sources: https://github.com/ximtech/jasypt-encrypt-plugin
Version 1.3.3 (latest)
1.3.3
Created 27 June 2023.
Property and Yaml encryption/decryption with configuration
Using the plugins DSL:
plugins {
id("io.github.ximtech.jasypt-encrypt-plugin") version "1.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.ximtech.jasypt-encrypt-plugin:jasypt-encrypt-plugin:1.3.3")
}
}
apply(plugin = "io.github.ximtech.jasypt-encrypt-plugin")
Using the plugins DSL:
plugins {
id "io.github.ximtech.jasypt-encrypt-plugin" version "1.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.ximtech.jasypt-encrypt-plugin:jasypt-encrypt-plugin:1.3.3"
}
}
apply plugin: "io.github.ximtech.jasypt-encrypt-plugin"