Search Gradle plugins

Version 0.5.0 (latest)

0.5.0

Created 27 June 2023.

Sets resolution strategies for known CVE reports

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.wooga.cve-dependency-resolution") version "0.5.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.wooga.gradle:cve-dependency-resolution:0.5.0")
      }
    }
    
    apply(plugin = "net.wooga.cve-dependency-resolution")
  • Applying plugins to all subprojects .