A Gradle build system plugin used to automate the setup of a Weave modding environment.
You can use Weave-Gradle as a plugin in your project by implementing it using JitPack. To do this, add the
following code to your build.gradle
file.
- Groovy DSL
settings.gradle
pluginManagement {
repositories {
maven {
name = 'JitPack'
url = 'https://jitpack.io'
}
}
}
build.gradle
plugins {
id "com.github.weave-mc.weave-gradle" version ${VERSION}
}
- Kotlin DSL
settins.gradle.kts
pluginManagement {
repositories {
maven("https://jitpack.io")
}
}
build.gradle.kts
plugins {
id("com.github.weave-mc.weave-gradle") version (${VERSION})
}
Replace
${VERSION}
with the version of Weave-Gradle in the Build Reference. (soon:tm:)
Weave is licensed under the GNU General Public License Version 3.