Search Gradle plugins

Version 2.2-3

Created 28 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-3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.minecrell:vanillagradle:2.2-3")
  }
}

apply(plugin = "net.minecrell.vanillagradle.server")

Using the plugins DSL:

plugins {
  id "net.minecrell.vanillagradle.server" version "2.2-3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.minecrell:vanillagradle:2.2-3"
  }
}

apply plugin: "net.minecrell.vanillagradle.server"

Learn how to apply plugins to subprojects