com.srcclr.gradle
Owner: SRC:CLR Engineering
The SourceClear Gradle Plugin keeps your Gradle projects free from vulnerable components
Sources: https://github.com/srcclr
Version 1.0.9
1.0.9
Created 19 December 2015.
The SRC:CLR Gradle Plugin keeps your Gradle projects free from vulnerable components
Using the plugins DSL:
plugins {
id("com.srcclr.gradle") version "1.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.srcclr:gradle:1.0.9")
}
}
apply(plugin = "com.srcclr.gradle")
Using the plugins DSL:
plugins {
id "com.srcclr.gradle" version "1.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.srcclr:gradle:1.0.9"
}
}
apply plugin: "com.srcclr.gradle"