com.github.pdebicki.salted-component
Owner: Piotr Debicki
A Gradle plugin for reading Maven's release.properties in Salt build system
https://github.com/pdebicki/salted-component-gradle-plugin
Sources: https://github.com/pdebicki/salted-component-gradle-plugin
Version 1.1 (latest)
Created 28 September 2018.
A Gradle plugin for reading Maven's release.properties in Salt build system
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.pdebicki.salted-component") version "1.1"
}
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.github.pdebicki.salted-component:com.github.pdebicki.salted-component.gradle.plugin:1.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.pdebicki.salted-component") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.pdebicki.salted-component:com.github.pdebicki.salted-component.gradle.plugin:1.1") } } apply(plugin = "com.github.pdebicki.salted-component")
- Applying plugins to all subprojects .