搜索Gradle插件

版本 0.20.1 (最新版)

0.20.1

创建于 2018年6月12日。

为Spring发布提供健康的默认设置

使用plugins DSL

plugins {
  id("io.spring.release") version "0.20.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.spring.gradle:spring-release-plugin:0.20.1")
  }
}

apply(plugin = "io.spring.release")

使用plugins DSL

plugins {
  id "io.spring.release" version "0.20.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.spring.gradle:spring-release-plugin:0.20.1"
  }
}

apply plugin: "io.spring.release"

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