Owner:
Steve Haslam
Get scm info into the MANIFEST.MF and pom.xml
Version 1.1.116
Created 10 September 2019.
Get scm info into the MANIFEST.MF and pom.xml
Add this plugin to your build using the plugins DSL:
plugins {
id("com.timgroup.jarmangit") version "1.1.116"
}
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.timgroup.jarmangit:com.timgroup.jarmangit.gradle.plugin:1.1.116") }It can then be applied in the precompiled script plugin:plugins { id("com.timgroup.jarmangit") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.timgroup.jarmangit:com.timgroup.jarmangit.gradle.plugin:1.1.116") } } apply(plugin = "com.timgroup.jarmangit") - Applying plugins to all subprojects .