Search Gradle plugins

net.minecrell.vanillagradle.server

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-6 (latest)

2.2-6

Created 30 April 2017.

Provides a MCP workspace for the Vanilla server with all run tasks disabled

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.minecrell.vanillagradle.server") version "2.2-6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.net.minecrell:vanillagradle:2.2-6")
      }
    }
    
    apply(plugin = "net.minecrell.vanillagradle.server")
  • Applying plugins to all subprojects .