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.1.0 (latest)
1.1.0
Created 10 June 2022.
A gradle plugin for minestom that generates the extension.json from the build file
Using the plugins DSL:
plugins {
id("com.guflimc.minestom.extensionsetup") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.guflimc.minestom:extensionsetup:1.1.0")
}
}
apply(plugin = "com.guflimc.minestom.extensionsetup")
Using the plugins DSL:
plugins {
id "com.guflimc.minestom.extensionsetup" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.guflimc.minestom:extensionsetup:1.1.0"
}
}
apply plugin: "com.guflimc.minestom.extensionsetup"