net.wooga.snyk-gradle-plugin
Owner: Manne Endres
Snyk conventions for gradle plugin projects
https://wooga.github.io/atlas-snyk-gradle-plugin/
Sources: https://github.com/wooga/atlas-snyk-gradle-plugin
Version 0.7.0 (latest)
0.7.0
Created 30 June 2023.
Snyk conventions for gradle plugin projects
Using the plugins DSL:
plugins {
id("net.wooga.snyk-gradle-plugin") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:snyk-gradle-plugin:0.7.0")
}
}
apply(plugin = "net.wooga.snyk-gradle-plugin")
Using the plugins DSL:
plugins {
id "net.wooga.snyk-gradle-plugin" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:snyk-gradle-plugin:0.7.0"
}
}
apply plugin: "net.wooga.snyk-gradle-plugin"