fr.il_totore.manadrop
Owner: RAPHAËL FROMENTIN
A Gradle plugin for Minecraft Development
https://github.com/Iltotore/ManaDrop
Sources: https://github.com/Iltotore/ManaDrop
Version 0.4.3 (latest)
Created 04 February 2023.
A Gradle plugin for Minecraft Development
Add this plugin to your build using the plugins DSL:
plugins {
id("fr.il_totore.manadrop") version "0.4.3"
}
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("fr.il_totore.manadrop:fr.il_totore.manadrop.gradle.plugin:0.4.3") }
It can then be applied in the precompiled script plugin:plugins { id("fr.il_totore.manadrop") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fr.il_totore.manadrop:fr.il_totore.manadrop.gradle.plugin:0.4.3") } } apply(plugin = "fr.il_totore.manadrop")
- Applying plugins to all subprojects .