uk.jamierocks.kitchensink
Owner: Jamie Mansfield
A Gradle plugin for running Sponge plugins from within your IDE, without complicated setup procedures.
https://github.com/jamierocks/KitchenSink
Sources: https://github.com/jamierocks/KitchenSink
Version 1.0.0 (latest)
Created 02 May 2016.
A Gradle plugin for running Sponge plugins from within your IDE, without complicated setup procedures.
Add this plugin to your build using the plugins DSL:
plugins {
id("uk.jamierocks.kitchensink") version "1.0.0"
}
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("uk.jamierocks.kitchensink:uk.jamierocks.kitchensink.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("uk.jamierocks.kitchensink") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("uk.jamierocks.kitchensink:uk.jamierocks.kitchensink.gradle.plugin:1.0.0") } } apply(plugin = "uk.jamierocks.kitchensink")
- Applying plugins to all subprojects .