Search Gradle plugins

Version 2.2.0 (latest)

2.2.0

Created 09 September 2023.

Deploy Sponge plugins to the Ore plugin repository

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.spongepowered.gradle.ore") version "2.2.0"
}

See also:

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