io.github.mictaege.spoon-gradle-plugin
所有者: Michael Taege
spoon-gradle-plugin 是一个用于 Java 分析和转换框架 Spoon 的 Gradle 插件。
https://github.com/mictaege/spoon-gradle-plugin
源代码: https://github.com/mictaege/spoon-gradle-plugin.git
版本 2024.2 (最新)
2024.2
创建于 2024 年 5 月 13 日。
spoon-gradle-plugin 是一个用于 Java 分析和转换框架 Spoon 的 Gradle 插件。
使用 插件 DSL
plugins {
id("io.github.mictaege.spoon-gradle-plugin") version "2024.2"
}
使用 旧插件应用方式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.mictaege:spoon-gradle-plugin:2024.2")
}
}
apply(plugin = "io.github.mictaege.spoon-gradle-plugin")
使用 插件 DSL
plugins {
id "io.github.mictaege.spoon-gradle-plugin" version "2024.2"
}
使用 旧插件应用方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.mictaege:spoon-gradle-plugin:2024.2"
}
}
apply plugin: "io.github.mictaege.spoon-gradle-plugin"