Skip to content

Gradle build system plugin used to automate the setup of a modding environment.

License

Notifications You must be signed in to change notification settings

Weave-MC/Weave-Gradle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3630c1b · Jul 4, 2024
Mar 8, 2023
Jul 4, 2024
Jul 4, 2024
Mar 26, 2023
Mar 9, 2023
Mar 2, 2023
Mar 12, 2023
Apr 15, 2023
Jul 4, 2024
Jul 4, 2024
Jul 4, 2024
Jul 4, 2024
Feb 23, 2023

Repository files navigation

Fork renamed 'minecraft' extension to 'weavecraft' to prevent conflict with other modding libraries


Weave-ified Loom

status


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

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.

About

Gradle build system plugin used to automate the setup of a modding environment.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages