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 1.0.8ad259c
1.0.8ad259c
Created 05 July 2018.
Simply encrypt your sensitive data in repository with password
Using the plugins DSL:
plugins {
id("com.cherryperry.gradle-file-encrypt") version "1.0.8ad259c"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.cherryperry.gfe:gradle-file-encrypt:1.0.8ad259c")
}
}
apply(plugin = "com.cherryperry.gradle-file-encrypt")
Using the plugins DSL:
plugins {
id "com.cherryperry.gradle-file-encrypt" version "1.0.8ad259c"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.cherryperry.gfe:gradle-file-encrypt:1.0.8ad259c"
}
}
apply plugin: "com.cherryperry.gradle-file-encrypt"