-
Notifications
You must be signed in to change notification settings - Fork 0
26.1.2 Developer Setup and Building
Dasik (Rifaditya) edited this page Aug 22, 2026
·
1 revision
This document details the JDK 25 toolchain setup, Loom Gradle configuration, build commands, and development environment workflows for Item Clumps on Minecraft 26.1.2.
| Tool | Required Version | Configuration Notes |
|---|---|---|
| Java Development Kit (JDK) | Java 25+ | Configured via org.gradle.java.home=E:/JDK25
|
| Fabric Loom | 1.15.2 |
Native non-obfuscated runtime |
| Gradle Wrapper |
8.12 / 9.x
|
Always build with --no-daemon on Windows |
| Fabric Loader | >=0.19.1 |
Modern Sovereign Era loader |
| Fabric API | 0.145.4+26.1.2 |
26.1.2 API build |
| DasikLibrary | 1.6.9+build.22 |
Core library dependency |
plugins {
id 'net.fabricmc.fabric-loom' version '1.15.2'
id 'maven-publish'
}
version = project.mod_version
group = project.maven_group
base.archivesName = project.archives_base_name
java {
toolchain {
languageVersion = JavaLanguageVersion.of(25)
}
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
modImplementation "net.fabricmc:fabric-loader:${project.fabric_loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "net.dasik:dasik-library:${project.dasik_library_version}"
}
tasks.withType(JavaCompile).configureEach {
options.release = 25
options.encoding = "UTF-8"
}git clone https://github.com/Rifaditya/IG-item-clumps.git
cd "IG-item-clumps/Item Clumps v26.1/Item Clumps 26.1"./gradlew build --no-daemonThe compiled artifact will be generated at:
build/libs/item-clumps-1.0.4+26.1.2.jar
Item Clumps is engineered with ❤️ by Dasik (Rifaditya) | Licensed under GNU General Public License v3.0 (GPL-3.0-or-later).
📌 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.
- 26.2 Hub
- 26.2 Mega-Stack Clumping
- 26.2 Smart Pickup System
- 26.2 Hopper Integration
- 26.2 Despawn Age Rules
- 26.2 Holographic Labels
- 26.2 Mod Compatibility
- 26.2 GameRules Table
- 26.2 Commands & Admin
- 26.2 Advancements
- 26.2 Configuration
- 26.2 ModVersionGuard
- 26.2 Architecture & Mixins
- 26.2 Developer Setup
- 26.2 API & Addons
- 26.2 FAQ & Diagnostics
- 26.1.2 Hub
- 26.1.2 Mega-Stack Clumping
- 26.1.2 Smart Pickup System
- 26.1.2 Hopper Integration
- 26.1.2 Despawn Age Rules
- 26.1.2 Holographic Labels
- 26.1.2 GameRules Table
- 26.1.2 Commands & Admin
- 26.1.2 Advancements
- 26.1.2 Configuration
- 26.1.2 Architecture & Mixins
- 26.1.2 Developer Setup
- 26.1.2 API & Addons
- 26.1.2 FAQ & Diagnostics