fr.xpdustry.toxopid
Owner:
Finley Experience
Gradle plugin for deploying mindustry mods/plugins + some build utilities.
https://github.com/Xpdustry/Toxopid
Sources: https://github.com/Xpdustry/Toxopid
Version 3.2.0 (latest)
Created 08 May 2023.
Gradle plugin for building and testing mindustry mods/plugins.
Add this plugin to your build using the plugins DSL:
plugins {
id("fr.xpdustry.toxopid") version "3.2.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("fr.xpdustry.toxopid:fr.xpdustry.toxopid.gradle.plugin:3.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("fr.xpdustry.toxopid") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fr.xpdustry.toxopid:fr.xpdustry.toxopid.gradle.plugin:3.2.0") } } apply(plugin = "fr.xpdustry.toxopid")
- Applying plugins to all subprojects .