Search Gradle plugins

Version 2.0.0

2.0.0

Created 04 September 2021.

Gradle conventions for Sponge organization projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.spongepowered.gradle.sponge.dev") version "2.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.spongepowered:spongegradle-convention:2.0.0")
      }
    }
    
    apply(plugin = "org.spongepowered.gradle.sponge.dev")
  • Applying plugins to all subprojects .