Search Gradle plugins

Version 2.2-6 (latest)

Created 30 April 2017.

Provides a MCP workspace with Vanilla client and server sources merged

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "net.minecrell.vanillagradle.merged" version "2.2-6"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects