Setup for Developers

From Marvel Superheroes Mod Wiki
Jump to navigation Jump to search

To add Marvel Superheroes to your project, you need to add these repositories to your `build.gradle`

repositories {
    maven {
        name = "TinTank Games"
        url = "https://maven.tintankgames.net/"
    }
    maven {
        url = "https://maven.theillusivec4.top/"
    }
}

And then add Into the Multiverse as a dependency:

dependencies {
    implementation "net.tintankgames:marvel:${marvel_version}-${minecraft_version}-neoforge"
}