tk.0pendeath.deathtoolkit
Owner:
0penDeath
A gradle plugin to help using the MCP with Gradle
Sources: https://github.com/0penDeath/DeathToolkit
Version 1.0.2
Created 26 November 2018.
A gradle plugin to help using the MCP with Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("tk.0pendeath.deathtoolkit") version "1.0.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("tk.0pendeath.deathtoolkit:tk.0pendeath.deathtoolkit.gradle.plugin:1.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("tk.0pendeath.deathtoolkit") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tk.0pendeath.deathtoolkit:tk.0pendeath.deathtoolkit.gradle.plugin:1.0.2") } } apply(plugin = "tk.0pendeath.deathtoolkit")
- Applying plugins to all subprojects .