Search Gradle plugins

org.joinfaces.dependency-management

Adds the joinfaces-dependencies bom to the projects dependency management.

https://github.com/joinfaces/joinfaces

Sources: https://github.com/joinfaces/joinfaces

Using the plugins DSL:

plugins {
  id("org.joinfaces.dependency-management") version "4.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.joinfaces:joinfaces-gradle-plugin:4.1.1")
  }
}

apply(plugin = "org.joinfaces.dependency-management")

Using the plugins DSL:

plugins {
  id "org.joinfaces.dependency-management" version "4.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.joinfaces:joinfaces-gradle-plugin:4.1.1"
  }
}

apply plugin: "org.joinfaces.dependency-management"

Learn how to apply plugins to subprojects