搜索 Gradle 插件

版本 0.1.2 (最新版本)

0.1.2

创建于 2016年8月21日。

一个用于将属性文件(s)读入项目结构的简单插件

使用 plugins DSL

plugins {
  id("com.github.pomes.props") version "0.1.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.pomes.gradle-plugins:props:0.1.2")
  }
}

apply(plugin = "com.github.pomes.props")

使用 plugins DSL

plugins {
  id "com.github.pomes.props" version "0.1.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.pomes.gradle-plugins:props:0.1.2"
  }
}

apply plugin: "com.github.pomes.props"

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