Skip to content

Commit

Permalink
Fix rest of outdated dependencies, toolchain working again now locally
Browse files Browse the repository at this point in the history
  • Loading branch information
inglettronald committed Dec 7, 2024
1 parent f7bcb7f commit 93257ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
id 'fabric-loom' version '1.7-SNAPSHOT'
id 'fabric-loom' version '1.9-SNAPSHOT'
id 'maven-publish'
id "org.jetbrains.kotlin.jvm" version "2.1.0"
id "org.jetbrains.kotlin.plugin.serialization" version "2.1.0"
Expand Down Expand Up @@ -78,18 +78,18 @@ processResources {

tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release = 17
it.options.release = 21
}

tasks.withType(KotlinCompile).configureEach {
kotlinOptions.jvmTarget = 17
kotlinOptions.jvmTarget = 21
}

java {
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

jar {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ maven_group=com.dulkirfabric
archives_base_name=dulkirmod-fabric

# Dependencies
fabric_version=0.110.5+1.21.4
fabric_version=0.111.0+1.21.4

# ModMenu
modMenu_version=13.0.0-beta.1

# Jarvis
jarvis_version=1.1.3
jarvis_version=1.1.4

# Cloth Config
clothConfig_version=16.0.141
clothConfig_version=17.0.142

# Orbit
orbit_version=0.2.3
Expand Down

0 comments on commit 93257ff

Please sign in to comment.