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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.joinfaces:joinfaces-gradle-plugin:4.7.10")
      }
    }
    
    apply(plugin = "org.joinfaces.dependency-management")
  • Applying plugins to all subprojects .