搜索Gradle插件

版本 0.1.8(最新版)

0.1.8

创建于 2021年10月6日。

Gradle插件,允许生成环境属性

使用 插件DSL

plugins {
  id("com.github.michaelruocco.environment-properties") version "0.1.8"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.michaelruocco:environment-properties-plugin:0.1.8")
  }
}

apply(plugin = "com.github.michaelruocco.environment-properties")

使用 插件DSL

plugins {
  id "com.github.michaelruocco.environment-properties" version "0.1.8"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.michaelruocco:environment-properties-plugin:0.1.8"
  }
}

apply plugin: "com.github.michaelruocco.environment-properties"

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