2.6
Compatibility
Changes
-We’ve switched to a new open-source system API -A system was added that predicts when the next data will arrive and sends the data accordingly; occasional freezes have been fixed. -A version control system has been added -Support for switching to a relay server if a P2P connection cannot be established has been added (for both client and host) -Automatic reconnection upon connection loss has been added -Support for adding fixed codes and fixed servers has been added; instead of a direct connection, you can add a server directly so that whenever your friend goes online, you can always connect to the same server
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:XtEbzMqr:W6ubeKKh"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:XtEbzMqr:W6ubeKKh"
}

