搜索 Gradle 插件

se.premex.gross

所有者: Erik Eelde

生成您依赖的开源许可证列表。依赖 cashapp(https://github.com/cashapp/licensee)中的 licensee 输出。可以生成静态列表或将许可证复制到 android 资产中。由于 licensee 支持多平台,因此该插件可以支持更多平台,但当前仅支持 Android。

https://github.com/premex-ab/gross

源代码: https://github.com/premex-ab/gross.git

版本 0.4.2 (最新版)

0.4.2

创建时间:2024年4月2日。

生成您依赖的开源许可证列表。依赖 cashapp(https://github.com/cashapp/licensee)中的 licensee 输出。可以生成静态列表或将许可证复制到 android 资产中。由于 licensee 支持多平台,因此该插件可以支持更多平台,但当前仅支持 Android。

使用 插件 DSL

plugins {
  id("se.premex.gross") version "0.4.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("se.premex:gross-plugin:0.4.2")
  }
}

apply(plugin = "se.premex.gross")

使用 插件 DSL

plugins {
  id "se.premex.gross" version "0.4.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "se.premex:gross-plugin:0.4.2"
  }
}

apply plugin: "se.premex.gross"

了解如何将插件应用到子项目中