Search Gradle plugins

Version 0.2 (latest)

0.2

Created 17 May 2021.

Set up a Minecraft workspace for project development

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.spongepowered.gradle.vanilla") version "0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.spongepowered:vanillagradle:0.2")
      }
    }
    
    apply(plugin = "org.spongepowered.gradle.vanilla")
  • Applying plugins to all subprojects .