Search Gradle plugins

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.liferay.change.log.builder") version "1.1.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.liferay:gradle-plugins-change-log-builder:1.1.7")
      }
    }
    
    apply(plugin = "com.liferay.change.log.builder")
  • Applying plugins to all subprojects .