Skip to content

Commit 8f0f400

Browse files
committed
bumped up version
1 parent 664555d commit 8f0f400

File tree

4 files changed

+15
-17
lines changed

4 files changed

+15
-17
lines changed

build.gradle

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
plugins {
2-
id 'fabric-loom' version '1.10-SNAPSHOT'
2+
id 'fabric-loom' version '1.14-SNAPSHOT'
33
id 'maven-publish'
44
}
55

6-
sourceCompatibility = JavaVersion.VERSION_21
7-
targetCompatibility = JavaVersion.VERSION_21
6+
//sourceCompatibility = JavaVersion.VERSION_21
7+
//targetCompatibility = JavaVersion.VERSION_21
88

9-
archivesBaseName = project.archives_base_name
9+
base {
10+
archivesName = project.archives_base_name
11+
}
1012
version = project.mod_version
1113
group = project.maven_group
1214

@@ -62,7 +64,7 @@ java {
6264

6365
jar {
6466
from("LICENSE") {
65-
rename { "${it}_${project.archivesBaseName}"}
67+
rename { "${it}_${project.base.archivesName}"}
6668
}
6769
}
6870

gradle.properties

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,14 @@ org.gradle.jvmargs=-Xmx1G
33

44
# https://fabricmc.net/develop/
55
# Fabric Properties
6-
minecraft_version=1.21.8
7-
yarn_mappings=1.21.8+build.1
8-
loader_version=0.16.14
6+
minecraft_version=1.21.11
7+
yarn_mappings=1.21.11+build.3
8+
loader_version=0.18.4
99

1010
# Fabric API
11-
fabric_version=0.129.0+1.21.8
11+
fabric_version=0.140.2+1.21.11
1212

1313
# Mod Properties
14-
mod_version = 1.2.3+1.21.8
14+
mod_version = 1.2.3+1.21.11
1515
maven_group = net.just_s
1616
archives_base_name = survival-debug-mod
17-
18-
19-
20-
#loom_version=1.11-SNAPSHOT
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-8.12-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/resources/fabric.mod.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
],
3131

3232
"depends": {
33-
"fabricloader": ">=0.15.10",
33+
"fabricloader": ">=0.18.4",
3434
"fabric": "*",
35-
"minecraft": ">=1.21.4",
35+
"minecraft": ">=1.21.11",
3636
"java": ">=21"
3737
}
3838
}

0 commit comments

Comments
 (0)