Tags
Creators
Details
All versions
0.3.0
Beta
XP Stream 0.3.0 for 26.1 Snapshot 27 months ago 89
Compatibility
Minecraft: Java Edition
26.1-snapshot-2
Platform
Fabric
Supported environments
Server-side
Singleplayer
Changes
[0.3.0] - 2026-01-07
Added
- Minecraft 26.1 Snapshot 2 support — XP_Stream now works on Minecraft 26.1 Snapshot 2 for both Fabric and NeoForge
- Java 25 support — Updated toolchain to Java 25 (required for 26.1+)
Changed
- Fabric: Migrated from Yarn to Mojang mappings (Phase 0)
- Fabric: Switched to unobfuscated Loom plugin (
net.fabricmc.fabric-loom) - Fabric: Updated dependency configuration from
modImplementationtoimplementation(26.1 unobfuscated requirement) - Fabric: Updated Fabric Loader to 0.18.4
- Fabric: Updated Fabric Loom to 1.15.0-alpha.25
- NeoForge: Updated to NeoForge 26.1.0.0-alpha.5+snapshot-2
- NeoForge: Updated ModDevGradle to 2.0.135
- Performance: 200 XP orbs now absorb in 3.8 seconds or less on Java 25 (verified on 26.1 Snapshot 2)
Technical
- Updated Java toolchain from 21 → 25 in
build.gradle - Removed mappings configuration for Fabric (not needed for unobfuscated 26.1+ builds)
- Updated
fabric.mod.jsonto use version range">=26.1-alpha.2"for compatibility - Verified mixin compatibility — all targets remain accessible on 26.1
- Both Fabric and NeoForge modules verified working with identical functionality
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:QZqv3OuH:zyBBFYVY"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:QZqv3OuH:zyBBFYVY"
}

