Search Gradle plugins

Version 0.3.0

Created 11 April 2021.

Edit the yaml file generated by the Cookpad License Tools plugin

Using the plugins DSL:

plugins {
  id("com.github.chantsune.license-tools-plus") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.chantsune:license-tools-plus:0.3.0")
  }
}

apply(plugin = "com.github.chantsune.license-tools-plus")

Using the plugins DSL:

plugins {
  id "com.github.chantsune.license-tools-plus" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.chantsune:license-tools-plus:0.3.0"
  }
}

apply plugin: "com.github.chantsune.license-tools-plus"

Learn how to apply plugins to subprojects