dev.simplix.helper.nukkit
Owner: Leonhard
Generate nukkit.yml for Nukkit plugins based on the Gradle project
Sources: https://simplixsoft.com/
Version 1.0.4 (latest)
1.0.4
Created 12 December 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.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.simplix.helper:plugin-yml:1.0.4")
}
}
apply(plugin = "dev.simplix.helper.nukkit")
Using the plugins DSL:
plugins {
id "dev.simplix.helper.nukkit" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.simplix.helper:plugin-yml:1.0.4"
}
}
apply plugin: "dev.simplix.helper.nukkit"