io.github.mictaege.spoon-gradle-plugin
Owner: Michael Taege
The spoon-gradle-plugin is a gradle plugin for the Java analysis and transformation framework Spoon.
https://github.com/mictaege/spoon-gradle-plugin
Sources: https://github.com/mictaege/spoon-gradle-plugin.git
Version 2024.2 (latest)
2024.2
Created 13 May 2024.
The spoon-gradle-plugin is a gradle plugin for the Java analysis and transformation framework Spoon.
Using the plugins DSL:
plugins {
id("io.github.mictaege.spoon-gradle-plugin") version "2024.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.mictaege:spoon-gradle-plugin:2024.2")
}
}
apply(plugin = "io.github.mictaege.spoon-gradle-plugin")
Using the plugins DSL:
plugins {
id "io.github.mictaege.spoon-gradle-plugin" version "2024.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.mictaege:spoon-gradle-plugin:2024.2"
}
}
apply plugin: "io.github.mictaege.spoon-gradle-plugin"