Downloads
For Players
The mod can be downloaded from both Curseforge and Modrinth.
For Developers
Releases
GuideME publishes Maven artifacts on both Github Packages and Maven Central.
How you can use GuideME in your build script will depend on which build tool you use.
If you use ModDevGradle, this snippet will include GuideMEs API during compile-time, and its full package during runtime:
repositories {
mavenCentral() // You might already have this
}
dependencies {
compileOnly 'org.appliedenergistics:guideme:<version>:api'
runtimeOnly 'org.appliedenergistics:guideme:<version>'
}
Snapshots
We publish every commit on the main branch to the Maven Central Snapshot repository.
You can see the list of versions.
To use these versions, you can use this repository in Gradle:
maven {
name = 'GuideME Snapshots'
url = 'https://central.sonatype.com/repository/maven-snapshots/'
content {
includeModule('org.appliedenergistics', 'guideme')
}
}