io.github.raccoon1515.sourcecrypt
Owner: Alexandr Ilyin
The plugin that encrypts your source code
https://github.com/raccoon1515/Source-crypt-gradle-plugin
Sources: https://github.com/raccoon1515/Source-crypt-gradle-plugin
Version 1.0 (latest)
1.0
Created 02 May 2022.
The plugin that encrypts your source code
Using the plugins DSL:
plugins {
id("io.github.raccoon1515.sourcecrypt") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.raccoon1515.sourcecrypt:source-crypt-plugin:1.0")
}
}
apply(plugin = "io.github.raccoon1515.sourcecrypt")
Using the plugins DSL:
plugins {
id "io.github.raccoon1515.sourcecrypt" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.raccoon1515.sourcecrypt:source-crypt-plugin:1.0"
}
}
apply plugin: "io.github.raccoon1515.sourcecrypt"