搜索Gradle插件

版本 2.28(最新版)

2.28

创建于 2023年9月18日。

Gradle构建系统的许可证定义和法律管理插件

使用 plugins DSL

plugins {
  id("com.dorkbox.Licensing") version "2.28"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.dorkbox:Licensing:2.28")
  }
}

apply(plugin = "com.dorkbox.Licensing")

使用 plugins DSL

plugins {
  id "com.dorkbox.Licensing" version "2.28"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.dorkbox:Licensing:2.28"
  }
}

apply plugin: "com.dorkbox.Licensing"

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