Search Gradle plugins

Version 0.10.6 (latest)

Created 21 July 2023.

Fork of Google play services Oss Licenses plugin

Using the plugins DSL:

plugins {
  id("com.geekorum.gms.oss-licenses-plugin") version "0.10.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.geekorum.gms:oss-licenses-plugin:0.10.6")
  }
}

apply(plugin = "com.geekorum.gms.oss-licenses-plugin")

Using the plugins DSL:

plugins {
  id "com.geekorum.gms.oss-licenses-plugin" version "0.10.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.geekorum.gms:oss-licenses-plugin:0.10.6"
  }
}

apply plugin: "com.geekorum.gms.oss-licenses-plugin"

Learn how to apply plugins to subprojects