搜索 Gradle 插件

版本 1.0.1(最新版)

1.0.1

创建于 2017 年 7 月 20 日。

一个允许你通过 gitflow 发布的插件

使用 插件 DSL

plugins {
  id("tane.mahuta.gradle.release-plugin") version "1.0.1"
}

使用 遗留插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.tane.mahuta.build:gradle-plugin-release:1.0.1")
  }
}

apply(plugin = "tane.mahuta.gradle.release-plugin")

使用 插件 DSL

plugins {
  id "tane.mahuta.gradle.release-plugin" version "1.0.1"
}

使用 遗留插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.tane.mahuta.build:gradle-plugin-release:1.0.1"
  }
}

apply plugin: "tane.mahuta.gradle.release-plugin"

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