org.spongepowered.gradle.meta
Owner: Gabriel Harris-Rouquette
Gradle plugin for automatically generating a mcmod.info file with the project properties
https://github.com/SpongePowered/SpongeGradle
Sources: https://github.com/SpongePowered/SpongeGradle
Version 0.11.5 (latest)
0.11.5
Created 18 June 2020.
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 file with the project properties
Add this plugin to your build using the plugins DSL:
plugins {
id("org.spongepowered.gradle.meta") version "0.11.5"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.spongepowered:SpongeGradle:0.11.5") } } apply(plugin = "org.spongepowered.gradle.meta")
- Applying plugins to all subprojects .