Skip to content

Latest commit

 

History

History
77 lines (55 loc) · 1.44 KB

README.md

File metadata and controls

77 lines (55 loc) · 1.44 KB

Weave-ified Loom

status


A Gradle build system plugin used to automate the setup of a Weave modding environment and testing Minecraft.

Usage

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.