io.github.simulatan.gradle-reflections-plugin
所有者: Jakob
在编译时嵌入反射结果
https://github.com/SIMULATAN/gradle-reflections-plugin
源代码: https://github.com/SIMULATAN/gradle-reflections-plugin.git
使用 plugins DSL
plugins {
id("io.github.simulatan.gradle-reflections-plugin") version "2.0.0"
}
使用 旧式插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.simulatan:gradle-reflections-plugin:2.0.0")
}
}
apply(plugin = "io.github.simulatan.gradle-reflections-plugin")
使用 plugins DSL
plugins {
id "io.github.simulatan.gradle-reflections-plugin" version "2.0.0"
}
使用 旧式插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.simulatan:gradle-reflections-plugin:2.0.0"
}
}
apply plugin: "io.github.simulatan.gradle-reflections-plugin"