org.danilopianini.build-commons
Owner: Danilo Pianini
A rich build configuration, shareable across projects
https://github.com/DanySK/build-commons
Sources: https://github.com/DanySK/build-commons
Version 0.1.6-99cf1ea
Created 27 September 2016.
A rich build configuration, shareable across projects
Add this plugin to your build using the plugins DSL:
plugins {
id("org.danilopianini.build-commons") version "0.1.6-99cf1ea"
}
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("org.danilopianini.build-commons:org.danilopianini.build-commons.gradle.plugin:0.1.6-99cf1ea") }
It can then be applied in the precompiled script plugin:plugins { id("org.danilopianini.build-commons") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.danilopianini.build-commons:org.danilopianini.build-commons.gradle.plugin:0.1.6-99cf1ea") } } apply(plugin = "org.danilopianini.build-commons")
- Applying plugins to all subprojects .