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

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

 
 
 

Contributors 4

  •  
  •  
  •  
  •  

Languages