搜索Gradle插件

版本 2.0.0 (最新版本)

2.0.0

创建于2019年7月28日。

变更日志生成器

使用插件DSL

plugins {
  id("com.chmyaf.gradle.plugin.changelog") version "2.0.0"
}

使用旧插件应用程序

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

apply(plugin = "com.chmyaf.gradle.plugin.changelog")

使用插件DSL

plugins {
  id "com.chmyaf.gradle.plugin.changelog" version "2.0.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.chmyaf.gradle.plugin:changelog:2.0.0"
  }
}

apply plugin: "com.chmyaf.gradle.plugin.changelog"

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