net.minecrell.vanillagradle.server
Owner: Minecrell
Provides a MCP workspace for the Vanilla server with all run tasks disabled
https://github.com/Minecrell/VanillaGradle
Sources: https://github.com/Minecrell/VanillaGradle
Version 2.2-1
2.2-1
Created 26 August 2016.
Provides a MCP workspace for the Vanilla server with all run tasks disabled
Using the plugins DSL:
plugins {
id("net.minecrell.vanillagradle.server") version "2.2-1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.minecrell:vanillagradle:2.2-1")
}
}
apply(plugin = "net.minecrell.vanillagradle.server")
Using the plugins DSL:
plugins {
id "net.minecrell.vanillagradle.server" version "2.2-1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.minecrell:vanillagradle:2.2-1"
}
}
apply plugin: "net.minecrell.vanillagradle.server"