com.liferay.change.log.builder
Owner: Liferay
The Change Log Builder Gradle plugin lets you generate and maintain a change log file based on the Git commits in your project.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-change-log-builder
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-change-log-builder
Version 1.1.7 (latest)
1.1.7
Created 21 August 2023.
The Change Log Builder Gradle plugin lets you generate and maintain a change log file based on the Git commits in your project.
Using the plugins DSL:
plugins {
id("com.liferay.change.log.builder") version "1.1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-change-log-builder:1.1.7")
}
}
apply(plugin = "com.liferay.change.log.builder")
Using the plugins DSL:
plugins {
id "com.liferay.change.log.builder" version "1.1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-change-log-builder:1.1.7"
}
}
apply plugin: "com.liferay.change.log.builder"