Search Gradle plugins

Version 2.2-5

Created 25 February 2017.

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

Using the plugins DSL:

plugins {
  id("net.minecrell.vanillagradle.client") version "2.2-5"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "net.minecrell.vanillagradle.client" version "2.2-5"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects