com.gitlab.firestar99.spigotgradle.server
Owner:
Firestar99
Automatically builds the spigot jar using the spigot BuildTool, sets up a spigot server in /server and puts the plugins in the correct place
https://gitlab.com/Firestar99/spigotgradle/readme.md
Version 1.5
Created 15 May 2020.
Automatically builds the spigot jar using the spigot BuildTool, sets up a spigot server in /server and puts the plugins in the correct place
Using the plugins DSL:
plugins {
id("com.gitlab.firestar99.spigotgradle.server") version "1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.gitlab.firestar99.spigotgradle:SpigotGradle:1.5")
}
}
apply(plugin = "com.gitlab.firestar99.spigotgradle.server")
Using the plugins DSL:
plugins {
id "com.gitlab.firestar99.spigotgradle.server" version "1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.gitlab.firestar99.spigotgradle:SpigotGradle:1.5"
}
}
apply plugin: "com.gitlab.firestar99.spigotgradle.server"