Search Gradle plugins

io.snyk.gradle.plugin.snykplugin

Find and fix vulnerabilities in you third-party dependencies with this Snyk for Gradle plugin

https://github.com/snyk/gradle-plugin

Sources: https://github.com/snyk/gradle-plugin

Version 0.7.0 (latest)

0.7.0

Created 17 October 2024.

Find and fix vulnerabilities in your third-party dependencies with this Snyk for Gradle plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.snyk.gradle.plugin.snykplugin") version "0.7.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.io.snyk.gradle.plugin:snyk:0.7.0")
      }
    }
    
    apply(plugin = "io.snyk.gradle.plugin.snykplugin")
  • Applying plugins to all subprojects .