com.linecorp.recursive-git-log-plugin
所有者: LINE_OSS
一个通过 git 历史和 Gradle 项目依赖关系提取受影响变更日志的插件
https://github.com/line/multi-project-support
源代码: https://github.com/line/multi-project-support
使用 插件 DSL
plugins {
id("com.linecorp.recursive-git-log-plugin") version "1.1.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.linecorp.support.project.multi:recursive-git-log-plugin:1.1.1")
}
}
apply(plugin = "com.linecorp.recursive-git-log-plugin")
使用 插件 DSL
plugins {
id "com.linecorp.recursive-git-log-plugin" version "1.1.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.linecorp.support.project.multi:recursive-git-log-plugin:1.1.1"
}
}
apply plugin: "com.linecorp.recursive-git-log-plugin"