net.somethingcatchy.gradle
Owner: Niklas Widmann
bundles fabric/forge/common gradle plugins and provides useful default configurations for minecraft mod developers
https://github.com/pssbletrngle/gradlehelper
Sources: https://github.com/pssbletrngle/gradlehelper
Version 0.0.6
0.0.6
Created 19 July 2023.
bundles fabric/forge/common gradle plugins and provides useful default configurations for minecraft mod developers
Using the plugins DSL:
plugins {
id("net.somethingcatchy.gradle") version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.somethingcatchy:net.somethingcatchy.gradle:0.0.6")
}
}
apply(plugin = "net.somethingcatchy.gradle")
Using the plugins DSL:
plugins {
id "net.somethingcatchy.gradle" version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.somethingcatchy:net.somethingcatchy.gradle:0.0.6"
}
}
apply plugin: "net.somethingcatchy.gradle"