Search Gradle plugins

io.github.chao2zhang.xuke

A Gradle plugin to collect software licenses from dependencies

https://github.com/chao2zhang/Xuke

Sources: https://github.com/chao2zhang/Xuke

Version 0.0.11 (latest)

Created 21 February 2022.

A Gradle plugin to collect software licenses from dependencies

Using the plugins DSL:

plugins {
  id("io.github.chao2zhang.xuke") version "0.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.chao2zhang:io.github.chao2zhang.xuke:0.0.11")
  }
}

apply(plugin = "io.github.chao2zhang.xuke")

Using the plugins DSL:

plugins {
  id "io.github.chao2zhang.xuke" version "0.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.chao2zhang:io.github.chao2zhang.xuke:0.0.11"
  }
}

apply plugin: "io.github.chao2zhang.xuke"

Learn how to apply plugins to subprojects