org.spongepowered.gradle.plugin
Owner: Gabriel Harris-Rouquette
Gradle plugin providing integration for plugins made for the Sponge platform
Sources: https://github.com/SpongePowered/SpongeGradle
Version 0.11.4-SNAPSHOT
Created 15 June 2020.
Gradle plugin providing integration for plugins made for the Sponge platform
Add this plugin to your build using the plugins DSL:
plugins {
id("org.spongepowered.gradle.plugin") version "0.11.4-SNAPSHOT"
}
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("org.spongepowered.gradle.plugin:org.spongepowered.gradle.plugin.gradle.plugin:0.11.4-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("org.spongepowered.gradle.plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.spongepowered.gradle.plugin:org.spongepowered.gradle.plugin.gradle.plugin:0.11.4-SNAPSHOT") } } apply(plugin = "org.spongepowered.gradle.plugin")
- Applying plugins to all subprojects .