com.guflimc.minestom.extensionsetup
Owner:
Joris Guffens
A gradle plugin for minestom that generates the extension.json from the build file
https://github.com/GufliMC/MinestomExtensionSetup
Sources: https://github.com/GufliMC/MinestomExtensionSetup
Version 1.0.0
Created 30 May 2022.
A gradle plugin for minestom that generates the extension.json from the build file
Add this plugin to your build using the plugins DSL:
plugins {
id("com.guflimc.minestom.extensionsetup") 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("com.guflimc.minestom.extensionsetup:com.guflimc.minestom.extensionsetup.gradle.plugin:1.0.0") }It can then be applied in the precompiled script plugin:plugins { id("com.guflimc.minestom.extensionsetup") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.guflimc.minestom.extensionsetup:com.guflimc.minestom.extensionsetup.gradle.plugin:1.0.0") } } apply(plugin = "com.guflimc.minestom.extensionsetup") - Applying plugins to all subprojects .