Skip to content

Commit

Permalink
feat: bump minecraft to 1.20.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jimchen5209 committed Apr 24, 2024
1 parent 4d8f7a9 commit 330cb15
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
// "maven-publish"
kotlin("jvm") version "1.9.22"
id("fabric-loom") version "1.4-SNAPSHOT"
kotlin("jvm") version "1.9.23"
id("fabric-loom") version "1.6-SNAPSHOT"
}

val version = "0.0.1"
val group = "one.oktw"

val fabricVersion = "0.92.0+1.20.4"
val fabricVersion = "0.97.6+1.20.5"
val galaxyLibVersion = "9a964eaf"

repositories {
Expand All @@ -22,15 +22,15 @@ base {
}

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

tasks.withType<KotlinCompile> {
kotlinOptions {
apiVersion = "1.7"
languageVersion = "1.7"
jvmTarget = "17"
jvmTarget = "21"
}
}

Expand All @@ -40,9 +40,9 @@ loom {

dependencies {
// Core
minecraft(group = "com.mojang", name = "minecraft", version = "1.20.4")
mappings(group = "net.fabricmc", name = "yarn", version = "1.20.4+build.3", classifier = "v2")
modImplementation(group = "net.fabricmc", name = "fabric-loader", version = "0.15.3")
minecraft(group = "com.mojang", name = "minecraft", version = "1.20.5")
mappings(group = "net.fabricmc", name = "yarn", version = "1.20.5+build.1", classifier = "v2")
modImplementation(group = "net.fabricmc", name = "fabric-loader", version = "0.15.10")

// fabric api
modImplementation(group = "net.fabricmc.fabric-api", name = "fabric-api", version = fabricVersion) {
Expand Down
2 changes: 1 addition & 1 deletion docker
Submodule docker updated 1 files
+9 −9 Dockerfile

0 comments on commit 330cb15

Please sign in to comment.