org.groovymc.modsdotgroovy
Owner: GroovyMC
A Gradle plugin for creation of mods.toml file from a groovy file
https://github.com/GroovyMC/ModsDotGroovy
Sources: https://github.com/GroovyMC/ModsDotGroovy
Version 2.0.0-beta.30 (latest)
2.0.0-beta.30
Created 27 June 2024.
A Gradle plugin for creation of mods metadata file from a groovy file
Using the plugins DSL:
plugins {
id("org.groovymc.modsdotgroovy") version "2.0.0-beta.30"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.groovymc.modsdotgroovy:gradle-plugin:2.0.0-beta.30")
}
}
apply(plugin = "org.groovymc.modsdotgroovy")
Using the plugins DSL:
plugins {
id "org.groovymc.modsdotgroovy" version "2.0.0-beta.30"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.groovymc.modsdotgroovy:gradle-plugin:2.0.0-beta.30"
}
}
apply plugin: "org.groovymc.modsdotgroovy"