搜索Gradle插件

版本 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"

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