Search Gradle plugins

org.spongepowered.meta

Gradle plugin automatically generating a mcmod.info metadata file with the project properties

https://github.com/SpongePowered/SpongeGradle

Sources: https://github.com/SpongePowered/SpongeGradle

Version 0.6

0.6

Created 30 May 2016.

Gradle plugin automatically generating a mcmod.info metadata file with the project properties

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.spongepowered.meta") version "0.6"
}

See also:

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