Just add some doc for how to include Baritone. It took me a while until I realized that Impact has own maven and that Baritone can be included even into Fabric mod without using broken Fabritone.
At least like cover this
// This adds the Impact maven and spongepowered maven which is required by Baritone
repositories {
maven {
name = 'impactdevelopment-repo'
url = 'https://impactdevelopment.github.io/maven/'
}
maven {
name = 'spongepowered-repo'
url = 'http://repo.spongepowered.org/maven/'
}
mavenCentral()
jcenter()
}
dependencies {
// This adds Baritone
modImplementation 'cabaletta:baritone-standalone:1.6'
include 'cabaletta:baritone-standalone:1.6'
// This adds Baritone api
modImplementation 'cabaletta:baritone-api:1.6'
include 'cabaletta:baritone-api:1.6'
}
With this you can include Baritone into Fabric mod. Might be helpful if you also cover how to do it with Forge. I don't work with Forge so I don't know.