Search Gradle plugins

com.softicar.gradle.dependency.validation

Owner: SoftiCAR

This plugin is useful to validate manual dependency conflict resolutions, e.g. by failing the build in case of accidential downgrades of dependencies. See the Javadoc of the plugin class for more details.

https://github.com/softicar/gradle-plugins

Sources: https://github.com/Prevent-DEV/com.softicar.gradle.plugins

Version 4.0.2

Created 01 November 2021.

This plugin is useful to validate manual dependency conflict resolutions, e.g. by failing the build in case of accidential downgrades of dependencies. See the Javadoc of the plugin class for more details.

Using the plugins DSL:

plugins {
  id("com.softicar.gradle.dependency.validation") version "4.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.softicar:com.softicar.gradle.plugins:4.0.2")
  }
}

apply(plugin = "com.softicar.gradle.dependency.validation")

Using the plugins DSL:

plugins {
  id "com.softicar.gradle.dependency.validation" version "4.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.softicar:com.softicar.gradle.plugins:4.0.2"
  }
}

apply plugin: "com.softicar.gradle.dependency.validation"

Learn how to apply plugins to subprojects