com.carrotsearch.gradle.dependencychecks
Owner: Dawid Weiss
Dependency checker and lock file aggregator
https://github.com/carrotsearch/gradle-dependencychecks-plugin
Sources: https://github.com/carrotsearch/gradle-dependencychecks-plugin.git
Version 0.0.9 (latest)
0.0.9
Created 23 May 2024.
Dependency checker and lock file aggregator
Using the plugins DSL:
plugins {
id("com.carrotsearch.gradle.dependencychecks") version "0.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.carrotsearch.gradle.dependencychecks:gradle-dependencychecks-plugin:0.0.9")
}
}
apply(plugin = "com.carrotsearch.gradle.dependencychecks")
Using the plugins DSL:
plugins {
id "com.carrotsearch.gradle.dependencychecks" version "0.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.carrotsearch.gradle.dependencychecks:gradle-dependencychecks-plugin:0.0.9"
}
}
apply plugin: "com.carrotsearch.gradle.dependencychecks"