Search Gradle plugins

Version 0.2.0 (latest)

Created 30 March 2024.

Gradle plugin that ensures first-order dependencies select the same version as they request.

Using the plugins DSL:

plugins {
  id("io.github.usefulness.maven-sympathy") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.usefulness:maven-sympathy:0.2.0")
  }
}

apply(plugin = "io.github.usefulness.maven-sympathy")

Using the plugins DSL:

plugins {
  id "io.github.usefulness.maven-sympathy" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.usefulness:maven-sympathy:0.2.0"
  }
}

apply plugin: "io.github.usefulness.maven-sympathy"

Learn how to apply plugins to subprojects