Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
if: runner.os != 'Windows'
run: chmod +x gradlew

- name: Set up JDK 25
- name: Set up JDK 26
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "25"
java-version: "26"
cache: gradle

- name: Validate Gradle wrapper
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Build (PowerShell)
Jar: build/libs/

Requirements
- Java 25
- Fabric Loader 0.18.5+
- Fabric API 0.144.3+26.1
- Java 26
- Fabric Loader 0.19.3
- Fabric API 0.155.2+26.2

Notes
- Resource pack format 84; assets under src/main/resources/assets/oneshot/
Expand Down
14 changes: 7 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Minimal Fabric Loom buildscript wiring (buildscript/classpath + apply)
plugins {
id("net.fabricmc.fabric-loom") version "1.15-SNAPSHOT"
id("net.fabricmc.fabric-loom") version "1.17.17"
java
`maven-publish`
}

val minecraftVersion = "26.1"
val loaderVersion = "0.18.5"
val fabricApiVersion = "0.144.3+26.1"
val minecraftVersion = "26.2"
val loaderVersion = "0.19.3"
val fabricApiVersion = "0.155.2+26.2"

repositories {
mavenCentral()
Expand All @@ -24,9 +24,9 @@ dependencies {
}

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(25))
toolchain.languageVersion.set(JavaLanguageVersion.of(26))
}

tasks.withType<JavaCompile>().configureEach {
options.release.set(25)
}
options.release.set(26)
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
org.gradle.jvmargs=-Xmx3G
java.toolchain.languageVersion=25
java.toolchain.languageVersion=26
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading