搜索Gradle插件

版本 1.1(最新版)

1.1

创建于2018年9月28日。

一个读取Salt构建系统中的Maven的release.properties的Gradle插件

使用插件双代码块

plugins {
  id("com.github.pdebicki.salted-component") version "1.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.pdebicki:salted-component-gradle-plugin:1.1")
  }
}

apply(plugin = "com.github.pdebicki.salted-component")

使用插件双代码块

plugins {
  id "com.github.pdebicki.salted-component" version "1.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.pdebicki:salted-component-gradle-plugin:1.1"
  }
}

apply plugin: "com.github.pdebicki.salted-component"

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