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.5.1

0.5.1

Created 04 January 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.5.1"
}

See also:

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