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