Search Gradle plugins

com.srcclr.gradle

The SourceClear Gradle Plugin keeps your Gradle projects free from vulnerable components

https://www.sourceclear.com

Sources: https://github.com/srcclr

Using the plugins DSL:

plugins {
  id("com.srcclr.gradle") version "2.2.14"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.srcclr:gradle:2.2.14")
  }
}

apply(plugin = "com.srcclr.gradle")

Using the plugins DSL:

plugins {
  id "com.srcclr.gradle" version "2.2.14"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.srcclr:gradle:2.2.14"
  }
}

apply plugin: "com.srcclr.gradle"

Learn how to apply plugins to subprojects