Search Gradle plugins

Version 0.92

Created 19 August 2022.

gradle plugin for compliance check

Using the plugins DSL:

plugins {
  id("io.github.season-max.privacycheck") version "0.92"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.season-max:plugins:0.92")
  }
}

apply(plugin = "io.github.season-max.privacycheck")

Using the plugins DSL:

plugins {
  id "io.github.season-max.privacycheck" version "0.92"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.season-max:plugins:0.92"
  }
}

apply plugin: "io.github.season-max.privacycheck"

Learn how to apply plugins to subprojects