搜索Gradle插件

版本 1.0.0 (最新)

1.0.0

创建于 2024年6月22日。

一个生成描述构建的Java源文件的Gradle插件。

使用 插件DSL

plugins {
  id("org.cthing.build-constants") version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.cthing:gradle-build-constants:1.0.0")
  }
}

apply(plugin = "org.cthing.build-constants")

使用 插件DSL

plugins {
  id "org.cthing.build-constants" version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.cthing:gradle-build-constants:1.0.0"
  }
}

apply plugin: "org.cthing.build-constants"

学习如何将插件应用到子项目中