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)
Created 13 May 2024.
The spoon-gradle-plugin is a gradle plugin for the Java analysis and transformation framework Spoon.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.mictaege.spoon-gradle-plugin") version "2024.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.mictaege.spoon-gradle-plugin:io.github.mictaege.spoon-gradle-plugin.gradle.plugin:2024.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.mictaege.spoon-gradle-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.mictaege.spoon-gradle-plugin:io.github.mictaege.spoon-gradle-plugin.gradle.plugin:2024.2") } } apply(plugin = "io.github.mictaege.spoon-gradle-plugin")
- Applying plugins to all subprojects .