🛠️ Developer Setup & Toolchain (Minecraft 26.2)
📌 Repository Source Disclaimer: The documentation in this Wiki reflects the current source code state in the repository, which may include recent unreleased commits or developmental features ahead of public release builds on CurseForge and Modrinth.
This guide details the technical specifications, Loom compiler toolchains, and build procedures for compiling the Minecraft 26.2 anchor (MC 26.1.2 / 26.2) of Potion Stacker Addon from source.
1. Technical Toolchain Specifications
| Toolchain Property | Anchor Specification |
|---|---|
| Minecraft Version | MC 26.1.2 / 26.2 |
| Mod SemVer | 1.1.3+26.2 |
| Java SDK Platform | OpenJDK 25 (Hotspot 64-bit) |
| Gradle Wrapper | Gradle 9.3+ (gradlew) |
| Fabric Loader | >=0.19.1 |
| Fabric API | 0.150.1+26.2 |
| DasikLibrary | >=1.8.3 |
| Stack Size Adjuster | >=1.4.10+26.2 |
2. Compilation & Verification Commands
Execute a clean, isolated build using the wrapper in non-daemon mode:
bash
# Windows PowerShell
./gradlew build --no-daemon
# Linux / macOS
./gradlew build --no-daemonThe compiled binary will be located at: build/libs/potion-stacker-addon-1.1.3+26.2.jar
3. Version-Specific gradle.properties Settings
properties
minecraft_version=26.2
mod_version=1.1.3+26.2
fabric_version=0.150.1+26.2
fabric_loader_version=0.19.1
dasik_library_version=1.8.3🔗 Related Documentation Links
- Return to Minecraft 26.2 Portal.
- Review the global Developer Setup & Build Guide.
- Review the Version Compatibility Matrix.
