Search Gradle plugins

Version 0.0.5

Created 07 July 2015.

This is dependency check gradle plugin.

Using the plugins DSL:

plugins {
  id("dependency.check") version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.thoughtworks.tools:dependency-check:0.0.5")
  }
}

apply(plugin = "dependency.check")

Using the plugins DSL:

plugins {
  id "dependency.check" version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.thoughtworks.tools:dependency-check:0.0.5"
  }
}

apply plugin: "dependency.check"

Learn how to apply plugins to subprojects