Skip to content

Commit b68f64a

Browse files
committed
1.18.2
1 parent e977181 commit b68f64a

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
kotlin("jvm") version "1.5.10"
2+
kotlin("jvm")
33
id("fabric-loom")
44
`maven-publish`
55
java
@@ -11,7 +11,7 @@ version = property("mod_version")!!
1111
repositories {
1212
// Add repositories to retrieve artifacts from in here.
1313
// You should only use this when depending on other mods because
14-
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
14+
// Loom adds the essential maven repositories to downl oad Minecraft and libraries from automatically.
1515
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
1616
// for more information about repositories.
1717
}
@@ -58,7 +58,7 @@ tasks {
5858
}
5959

6060
compileKotlin {
61-
kotlinOptions.jvmTarget = "16"
61+
kotlinOptions.jvmTarget = "17"
6262
}
6363

6464
}

gradle.properties

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
kotlin.code.style=official
22
archives_base_name=fabric-example-mod
33
maven_group=net.fabricmc
4-
loom_version=0.8-SNAPSHOT
5-
minecraft_version=1.17.1
6-
yarn_mappings=1.17.1+build.1
7-
loader_version=0.11.6
8-
fabric_kotlin_version=1.6.1+kotlin.1.5.10
9-
fabric_api_version=0.36.1+1.17
4+
loom_version=0.11-SNAPSHOT
5+
minecraft_version=1.18.2
6+
yarn_mappings=1.18.2+build.2
7+
loader_version=0.13.3
8+
fabric_kotlin_version=1.7.1+kotlin.1.6.10
9+
fabric_api_version=0.48.0+1.18.2
1010
mod_version=1.0.0
11+
12+
org.gradle.jvmargs=-Xmx4000m
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ pluginManagement {
99
}
1010

1111
plugins {
12-
id("fabric-loom") version "0.8-SNAPSHOT"
13-
id("org.jetbrains.kotlin.jvm") version "1.5.0"
12+
id("fabric-loom") version "0.11-SNAPSHOT"
13+
id("org.jetbrains.kotlin.jvm") version "1.6.10"
1414
}
1515

1616
}

0 commit comments

Comments
 (0)