com.github.theproductiveprogrammer.classlist
所有者: Charles L
列出当前项目中所有可用的Java类
https://github.com/theproductiveprogrammer/classlist-gradle-plugin#README
来源: https://github.com/theproductiveprogrammer/classlist-gradle-plugin
版本 1.0(最新版)
1.0
创建于 2020年8月8日。
列出当前项目中所有可用的Java类
使用 插件DSL
plugins {
id("com.github.theproductiveprogrammer.classlist") version "1.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.theproductiveprogrammer.classlist:classlist:1.0")
}
}
apply(plugin = "com.github.theproductiveprogrammer.classlist")
使用 插件DSL
plugins {
id "com.github.theproductiveprogrammer.classlist" version "1.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.theproductiveprogrammer.classlist:classlist:1.0"
}
}
apply plugin: "com.github.theproductiveprogrammer.classlist"