Skip to content

Making an addon

KnightMiner edited this page Oct 17, 2017 · 1 revision

The current version is 1.12.1-0.2.1.3

To get Tinkers Complement into your dev environment you need to add it as a dependency.

First you need to add our maven repo to your build.gradle:

repositories {
    ...
    maven {
        name 'DVS1 Maven FS'
        url 'http://dvs1.progwml6.com/files/maven'
    }
}

Then you need to tell it to get Tinkers Complement from there:

dependencies {
    deobfCompile "slimeknights.mantle:Mantle:1.12-<mantle_build>"
    deobfCompile "slimeknights:TConstruct:1.12-<tic_build>"
    deobfCompile "knightminer.tcomplement:TinkersComplement:1.12.1-<tcomp_build>"
}

Mantle and Tinkers Construct are needed for Tinkers Complement, you can that build info here in Tinkers Complement's build info.

Clone this wiki locally