Search Gradle plugins

Version 2.1.2 (latest)

2.1.2

Created 22 July 2024.

Convenient dependency conflict management for Java projects.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gradlex.jvm-dependency-conflict-resolution") version "2.1.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gradlex:jvm-dependency-conflict-resolution:2.1.2")
      }
    }
    
    apply(plugin = "org.gradlex.jvm-dependency-conflict-resolution")
  • Applying plugins to all subprojects .