com.github.theproductiveprogrammer.classlist
Owner: Charles L
List all the java classes available in your current project
https://github.com/theproductiveprogrammer/classlist-gradle-plugin#README
Sources: https://github.com/theproductiveprogrammer/classlist-gradle-plugin
Version 1.0 (latest)
1.0
Created 08 August 2020.
List all the java classes available in your current project
Using the plugins DSL:
plugins {
id("com.github.theproductiveprogrammer.classlist") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.theproductiveprogrammer.classlist:classlist:1.0")
}
}
apply(plugin = "com.github.theproductiveprogrammer.classlist")
Using the plugins DSL:
plugins {
id "com.github.theproductiveprogrammer.classlist" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.theproductiveprogrammer.classlist:classlist:1.0"
}
}
apply plugin: "com.github.theproductiveprogrammer.classlist"