Owner:
Lars Grefer
Adds the joinfaces-dependencies bom to the projects dependency management.
Version 5.0.0-m3
Created 21 May 2022.
Adds the joinfaces-dependencies bom to the projects dependency management.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.joinfaces.dependency-management") version "5.0.0-m3"
}
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.joinfaces.dependency-management:org.joinfaces.dependency-management.gradle.plugin:5.0.0-m3") }It can then be applied in the precompiled script plugin:plugins { id("org.joinfaces.dependency-management") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.joinfaces.dependency-management:org.joinfaces.dependency-management.gradle.plugin:5.0.0-m3") } } apply(plugin = "org.joinfaces.dependency-management") - Applying plugins to all subprojects .