搜索 Gradle 插件

版本 1.0.0 (最新版)

1.0.0

创建于 2024 年 4 月 26 日。

一个Gradle插件,用于生成包含属性文件中键常量的Java源文件。

使用 插件 DSL

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

使用 旧插件应用

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

apply(plugin = "org.cthing.property-key-constants")

使用 插件 DSL

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

使用 旧插件应用

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

apply plugin: "org.cthing.property-key-constants"

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