io.github.raccoon1515.sourcecrypt
所有者: Alexandr Ilyin
加密您的源代码的插件
https://github.com/raccoon1515/Source-crypt-gradle-plugin
源代码: https://github.com/raccoon1515/Source-crypt-gradle-plugin
版本 1.0(最新版)
1.0
创建于 2022年5月2日。
加密您的源代码的插件
使用插件 DSL
plugins {
id("io.github.raccoon1515.sourcecrypt") version "1.0"
}
使用传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.raccoon1515.sourcecrypt:source-crypt-plugin:1.0")
}
}
apply(plugin = "io.github.raccoon1515.sourcecrypt")
使用插件 DSL
plugins {
id "io.github.raccoon1515.sourcecrypt" version "1.0"
}
使用传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.raccoon1515.sourcecrypt:source-crypt-plugin:1.0"
}
}
apply plugin: "io.github.raccoon1515.sourcecrypt"