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.9.0 (latest)

0.9.0

Created 27 August 2018.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Gradle plugin for 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.9.0"
}

See also:

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