Search Gradle plugins

Version 1.0 (latest)

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"

Learn how to apply plugins to subprojects