Search Gradle plugins

Version 0.3.4

Created 10 July 2021.

A Gradle plugin to produce a dependency report in JSON format that Gemnasium can use for a dependency vulnerability scan

Using the plugins DSL:

plugins {
  id("com.gemnasium.gradle-plugin") version "0.3.4"
}

Using legacy plugin application:

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

apply(plugin = "com.gemnasium.gradle-plugin")

Using the plugins DSL:

plugins {
  id "com.gemnasium.gradle-plugin" version "0.3.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gemnasium:gradle-plugin:0.3.4"
  }
}

apply plugin: "com.gemnasium.gradle-plugin"

Learn how to apply plugins to subprojects