搜索Gradle插件

版本 3.0-rc(最新版)

3.0-rc

创建于 2021 年 12 月 12 日。

保护模组服务器代码的插件

使用 插件 DSL

plugins {
  id("tech.justagod.cutter") version "3.0-rc"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("tech.justagod:cutter:3.0-rc")
  }
}

apply(plugin = "tech.justagod.cutter")

使用 插件 DSL

plugins {
  id "tech.justagod.cutter" version "3.0-rc"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "tech.justagod:cutter:3.0-rc"
  }
}

apply plugin: "tech.justagod.cutter"

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