net.wooga.cve-dependency-resolution
Owner: Manne Endres
Sets resolution strategies for known CVE reports
https://wooga.github.io/atlas-security-version-resolution/
Sources: https://github.com/wooga/atlas-security-version-resolution
Version 0.5.0 (latest)
0.5.0
Created 27 June 2023.
Sets resolution strategies for known CVE reports
Using the plugins DSL:
plugins {
id("net.wooga.cve-dependency-resolution") version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:cve-dependency-resolution:0.5.0")
}
}
apply(plugin = "net.wooga.cve-dependency-resolution")
Using the plugins DSL:
plugins {
id "net.wooga.cve-dependency-resolution" version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:cve-dependency-resolution:0.5.0"
}
}
apply plugin: "net.wooga.cve-dependency-resolution"