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 "5.2.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.2.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.2.0-m3")
      }
    }
    
    apply(plugin = "org.joinfaces.dependency-management")
  • Applying plugins to all subprojects .