io.github.liplum.mgpp
Owner: Liplum
For Mindustry modding in Java, kotlin and so on.
https://plumygames.github.io/mgpp/
Sources: https://github.com/PlumyGame/mgpp
Version 1.0.13
Created 09 July 2022.
For Mindustry modding in Java, kotlin and so on.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.liplum.mgpp") version "1.0.13"
}
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.liplum.mgpp:io.github.liplum.mgpp.gradle.plugin:1.0.13") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.liplum.mgpp") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.liplum.mgpp:io.github.liplum.mgpp.gradle.plugin:1.0.13") } } apply(plugin = "io.github.liplum.mgpp")
- Applying plugins to all subprojects .