com.cherryperry.gradle-file-encrypt
Owner: Cherry Perry
Simply encrypt your sensitive data in repository with password
https://github.com/CherryPerry/GradleFileEncrypt
Sources: https://github.com/CherryPerry/GradleFileEncrypt.git
Version 2.0.3 (latest)
2.0.3
Created 02 September 2022.
Simply encrypt your sensitive data in repository with password
Using the plugins DSL:
plugins {
id("com.cherryperry.gradle-file-encrypt") version "2.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.cherryperry.gfe:gradle-file-encrypt:2.0.3")
}
}
apply(plugin = "com.cherryperry.gradle-file-encrypt")
Using the plugins DSL:
plugins {
id "com.cherryperry.gradle-file-encrypt" version "2.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.cherryperry.gfe:gradle-file-encrypt:2.0.3"
}
}
apply plugin: "com.cherryperry.gradle-file-encrypt"