org.joinfaces.dependency-management
Owner: Lars Grefer
Adds the joinfaces-dependencies bom to the projects dependency management.
https://github.com/joinfaces/joinfaces
Sources: https://github.com/joinfaces/joinfaces
Version 5.2.0-m3 (latest)
5.2.0-m3
Created 30 September 2023.
Adds the joinfaces-dependencies bom to the projects dependency management.
Using the plugins DSL:
plugins {
id("org.joinfaces.dependency-management") version "5.2.0-m3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.joinfaces:joinfaces-gradle-plugin:5.2.0-m3")
}
}
apply(plugin = "org.joinfaces.dependency-management")
Using the plugins DSL:
plugins {
id "org.joinfaces.dependency-management" version "5.2.0-m3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.joinfaces:joinfaces-gradle-plugin:5.2.0-m3"
}
}
apply plugin: "org.joinfaces.dependency-management"