搜索Gradle插件

版本 0.1.1-SNAPSHOT (最新)

0.1.1-SNAPSHOT

创建于2020年3月19日。

从属性文件键生成Java常量

使用 插件DSL

plugins {
  id("org.manathome.props2consts") version "0.1.1-SNAPSHOT"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.manathome.props2consts:plugin:0.1.1-SNAPSHOT")
  }
}

apply(plugin = "org.manathome.props2consts")

使用 插件DSL

plugins {
  id "org.manathome.props2consts" version "0.1.1-SNAPSHOT"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.manathome.props2consts:plugin:0.1.1-SNAPSHOT"
  }
}

apply plugin: "org.manathome.props2consts"

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