Search Gradle plugins

net.minecrell.vanillagradle.client

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

https://github.com/Minecrell/VanillaGradle

Sources: https://github.com/Minecrell/VanillaGradle

Version 2.2-2

2.2-2

Created 27 August 2016.

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

Add this plugin to your build using the plugins DSL:

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

See also:

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