dev.simplix.helper.nukkit
Owner: Leonhard
Generate nukkit.yml for Nukkit plugins based on the Gradle project
Sources: https://simplixsoft.com/
Version 1.0.3
1.0.3
Created 12 February 2022.
Generate nukkit.yml for Nukkit plugins based on the Gradle project
Using the plugins DSL:
plugins {
id("dev.simplix.helper.nukkit") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.simplix.helper:plugin-yml:1.0.3")
}
}
apply(plugin = "dev.simplix.helper.nukkit")
Using the plugins DSL:
plugins {
id "dev.simplix.helper.nukkit" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.simplix.helper:plugin-yml:1.0.3"
}
}
apply plugin: "dev.simplix.helper.nukkit"