lol.koblizek.composer
Owner: Koblížkáč
Plugin which makes creating Minecraft server development much easier!
https://github.com/ComposeMC/Composer
Sources: https://github.com/ComposeMC/Composer
Version 0.2.1 (latest)
0.2.1
Created 19 October 2023.
Plugin which makes creating Minecraft server development much easier!
Using the plugins DSL:
plugins {
id("lol.koblizek.composer") version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("lol.koblizek:Composer:0.2.1")
}
}
apply(plugin = "lol.koblizek.composer")
Using the plugins DSL:
plugins {
id "lol.koblizek.composer" version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "lol.koblizek:Composer:0.2.1"
}
}
apply plugin: "lol.koblizek.composer"