Search Gradle plugins

com.bihe0832.gradleDependenciesCheck

Owner: 子勰

A plugin to check wherether the configuration of your gradle dependencies have conflicts or not!

https://github.com/bihe0832/Gradle-Dependencies-Check

Sources: https://github.com/bihe0832/Gradle-Dependencies-Check.git

Version 1.0.3

Created 14 May 2019.

A plugin to check wherether the configuration of your gradle dependencies have conflicts or not!

Using the plugins DSL:

plugins {
  id("com.bihe0832.gradleDependenciesCheck") version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.bihe0832:Gradle-Dependencies-Check-Plugin:1.0.3")
  }
}

apply(plugin = "com.bihe0832.gradleDependenciesCheck")

Using the plugins DSL:

plugins {
  id "com.bihe0832.gradleDependenciesCheck" version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.bihe0832:Gradle-Dependencies-Check-Plugin:1.0.3"
  }
}

apply plugin: "com.bihe0832.gradleDependenciesCheck"

Learn how to apply plugins to subprojects