Skip to content

Pls add some docs for including with maven so client developers don't have to violate license #4

@SolsticeSpectrum

Description

@SolsticeSpectrum

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions