Search Gradle plugins

Version 0.5.2

Created 09 May 2016.

Gradle plugin providing integration for plugins made for the Sponge platform

Using the plugins DSL:

plugins {
  id("org.spongepowered.plugin") version "0.5.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.spongepowered:spongegradle:0.5.2")
  }
}

apply(plugin = "org.spongepowered.plugin")

Using the plugins DSL:

plugins {
  id "org.spongepowered.plugin" version "0.5.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.spongepowered:spongegradle:0.5.2"
  }
}

apply plugin: "org.spongepowered.plugin"

Learn how to apply plugins to subprojects