com.bigbade.minecraftplugindevelopment
Owner: Ethan Menell
Automatically adds needed libraries, and download/starts the latest server for testing
https://www.bigbade.com/minecraftplugindevelopment
Sources: https://github.com/BigBadE/minecraftplugindevelopment
Version 1.0.4 (latest)
1.0.4
Created 10 March 2021.
Automatically adds needed libraries, and download/starts the latest server for testing
Using the plugins DSL:
plugins {
id("com.bigbade.minecraftplugindevelopment") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.bigbade.minecraftplugindevelopment:gradle-plugin:1.0.4")
}
}
apply(plugin = "com.bigbade.minecraftplugindevelopment")
Using the plugins DSL:
plugins {
id "com.bigbade.minecraftplugindevelopment" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.bigbade.minecraftplugindevelopment:gradle-plugin:1.0.4"
}
}
apply plugin: "com.bigbade.minecraftplugindevelopment"