me.mrcrille.paperspigot-gradle
Owner: Christian Hansen
A plugin for gradle to handle a Paperclip server.
https://github.com/MrCrille/PaperSpigot-Gradle
Sources: https://github.com/MrCrille/PaperSpigot-Gradle.git
Version 0.0.2 (latest)
0.0.2
Created 03 December 2018.
A plugin for gradle to handle a Paper Spigot server.
Using the plugins DSL:
plugins {
id("me.mrcrille.paperspigot-gradle") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.mrcrille:paperspigot-gradle:0.0.2")
}
}
apply(plugin = "me.mrcrille.paperspigot-gradle")
Using the plugins DSL:
plugins {
id "me.mrcrille.paperspigot-gradle" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.mrcrille:paperspigot-gradle:0.0.2"
}
}
apply plugin: "me.mrcrille.paperspigot-gradle"