Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.SlimeKnights:TinkersConstruct:3.9.1.19'
}
dependencies {
implementation("com.github.SlimeKnights:TinkersConstruct:3.9.1.19")
}
<dependency>
<groupId>com.github.SlimeKnights</groupId>
<artifactId>TinkersConstruct</artifactId>
<version>3.9.1.19</version>
</dependency>
libraryDependencies += "com.github.SlimeKnights" % "TinkersConstruct" % "3.9.1.19"
:dependencies [[com.github.SlimeKnights/TinkersConstruct "3.9.1.19"]]
Modify all the things, then do it again!
Melt down any metals you find.
Power the world with spinning wind!
For documentation on writing addons or working with Tinkers' Consrtuct datapacks, see the pages on the SlimeKnight's Github.io pages: https://slimeknights.github.io/docs/
Note: Git MUST be installed and in the system path to use our scripts.
gradlew genIntellijRuns
through IDEA.gradlew build
.gradlew clean
and gradlew cleanCache
Please include the following:
Code, Textures and binaries are licensed under the MIT License.
You are allowed to use the mod in your modpack. Any modpack which uses Tinkers' Construct takes full responsibility for user support queries. For anyone else, we only support official builds from the main CI server, not custom built jars. We also do not take bug reports for outdated builds of Minecraft.
If you have queries about any license or the above support restrictions, please drop by our IRC channel, #TinkersConstruct on irc.esper.net
Any alternate licenses are noted where appropriate.
Some jars from our build servers may be signed. Under no circumstances does anyone have permission to verify the signatures on those jars from other mods. The signing is for informational purposes only.