搜索 Gradle 插件

版本 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"

了解如何将插件应用于子项目