Baritone AI pathfinder

Baritone AI pathfinder

72.7k Downloads

Probleme implementing Barione API in my 1.12.2 forge MOD

emile-bach opened this issue ยท 0 comments

commented

What do you need help with?

Hi, I have to implement Baritone on my forge 1.12.2 mod and I tried to do it like this :

repositories {
    maven {
        name = 'impact'
        url = 'https://impactdevelopment.github.io/maven/'
    }
   mavenCentral()
}

dependencies {
      compile 'com.github.cabaletta:baritone:v1.2.13'
}

but when I try to use it in game it just doesn't work and when I type: gradlew dependencies in my terminal it says FAILED:

+--- com.github.cabaletta:baritone:v1.2.13 FAILED
\--- net.minecraftforge:forge:1.12.2-14.23.5.2854

testCompile - Dependencies for source set 'test'.
+--- com.github.cabaletta:baritone:v1.2.13 FAILED
\--- net.minecraftforge:forge:1.12.2-14.23.5.2854

testCompileClasspath - Compile classpath for source set 'test'.
+--- com.github.cabaletta:baritone:v1.2.13 FAILED
\--- net.minecraftforge:forge:1.12.2-14.23.5.2854

testCompileOnly - Compile dependencies for source set 'test'.
+--- com.github.cabaletta:baritone:v1.2.13 FAILED
\--- net.minecraftforge:forge:1.12.2-14.23.5.2854

testRuntime - Runtime dependencies for source set 'test'.
+--- com.github.cabaletta:baritone:v1.2.13 FAILED
\--- net.minecraftforge:forge:1.12.2-14.23.5.2854

Can anyone can help me with this problem ?