Search Gradle plugins

Version 0.2.2 (latest)

Created 29 January 2024.

A plugin that generates a list of open source licenses you depend on

Using the plugins DSL:

plugins {
  id("io.github.usefulness.licensee-for-android") version "0.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.usefulness:licensee-for-android:0.2.2")
  }
}

apply(plugin = "io.github.usefulness.licensee-for-android")

Using the plugins DSL:

plugins {
  id "io.github.usefulness.licensee-for-android" version "0.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.usefulness:licensee-for-android:0.2.2"
  }
}

apply plugin: "io.github.usefulness.licensee-for-android"

Learn how to apply plugins to subprojects