搜索Gradle插件

com.geoffgranum.gradle-conventional-changelog

所有者: Geoff Granum

使用Google的AngularJS团队建立的格式,从git提交消息中自动生成变更日志文件。

https://github.com/ggranum/gradle-changelog-plugin/

来源: https://github.com/ggranum/gradle-changelog-plugin/

版本 0.3.1 (最新)

0.3.1

创建于2020年9月14日。

使用Google的AngularJS团队建立的格式,从git提交消息中自动生成变更日志文件。

使用插件的DSL

plugins {
  id("com.geoffgranum.gradle-conventional-changelog") version "0.3.1"
}

使用传统的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.geoffgranum:gradle-conventional-changelog:0.3.1")
  }
}

apply(plugin = "com.geoffgranum.gradle-conventional-changelog")

使用插件的DSL

plugins {
  id "com.geoffgranum.gradle-conventional-changelog" version "0.3.1"
}

使用传统的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.geoffgranum:gradle-conventional-changelog:0.3.1"
  }
}

apply plugin: "com.geoffgranum.gradle-conventional-changelog"

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