com.javiersc.gradle.plugins.changelog
                  Owner:
                  
                    
                    Javier Segovia Córdoba
                  
                
A custom plugin for Changelog plugin with basic setup
https://github.com/JavierSegoviaCordoba/gradle-plugins
Sources: https://github.com/JavierSegoviaCordoba/gradle-plugins
Version 0.1.0-alpha.71
Created 18 October 2021.
                A custom plugin for Changelog plugin with basic setup
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.javiersc.gradle.plugins.changelog") version "0.1.0-alpha.71"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.javiersc.gradle.plugins.changelog:com.javiersc.gradle.plugins.changelog.gradle.plugin:0.1.0-alpha.71") }It can then be applied in the precompiled script plugin:plugins { id("com.javiersc.gradle.plugins.changelog") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.javiersc.gradle.plugins.changelog:com.javiersc.gradle.plugins.changelog.gradle.plugin:0.1.0-alpha.71") } } apply(plugin = "com.javiersc.gradle.plugins.changelog")
- Applying plugins to all subprojects .