Skip to content
J-RAP edited this page Jun 23, 2023 · 9 revisions

Installation

For practical reasons, the best method implement WaterMedia on your gradle is use CurseMaven CurseMaven is a maven repository based on CurseForge files.

repositories {
    // ...
    maven {
        url "https://www.cursemaven.com"
        content { includeGroup "curse.maven" }
    }
}

Now you can implement WaterMedia Check the latest version here: CurseForge - WATERMeDIA The best option to gestionate watermedia version is put mod version inside your gradle.properties to avoid your build.gradle

watermediaversion = '4600199'
dependencies {
     // FORGE
     implementation fg.deobf("curse.maven:watermedia-869524:${watermediaversion}")

     // FABRIC
     modImplementation "curse.maven:watermedia-869524:4600199"
}
Clone this wiki locally