Skip to content

Commit e4beb77

Browse files
committed
To 1.21.5
1 parent d3d4d6f commit e4beb77

File tree

9 files changed

+210
-142
lines changed

9 files changed

+210
-142
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
This mod|Minecraft|[Fabric API](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files)|[Mod Menu](https://www.curseforge.com/minecraft/mc-mods/modmenu/files) (optional)
1111
--|--|--|--
12-
**1.20.1-1.4.1**|**1.20.1+**|**0.85.0+1.20.1**|**7.1.0**
12+
**1.21.4-1.5.0**|**1.21.5+**|*0.119.2+1.21.4**|**13.0.3**
13+
1.20.1-1.4.1|1.20.1+|0.85.0+1.20.1|7.1.0
1314
1.19.2-1.3.1|1.19.2+|0.60.0+1.19.2|4.1.0
1415
1.18.1-1.3.0|1.18.x|0.44.0+1.18|3.0.0
1516
1.17.1-1.2.1|1.17.1|0.41.0+1.17|2.0.14
@@ -50,7 +51,3 @@ This mod|Minecraft|[Fabric API](https://www.curseforge.com/minecraft/mc-mods/fab
5051
- This is reachable through mod menu as well when available.
5152

5253
<hr/>
53-
54-
## Discord
55-
56-
https://discord.gg/9xnv2gQbJt

build.gradle

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
plugins {
2-
id 'fabric-loom' version '1.3-SNAPSHOT'
2+
id 'fabric-loom' version '1.10-SNAPSHOT'
33
id 'maven-publish'
44
}
55

6-
sourceCompatibility = JavaVersion.VERSION_17
7-
targetCompatibility = JavaVersion.VERSION_17
8-
9-
archivesBaseName = project.archives_base_name
106
version = project.mod_version
117
group = project.maven_group
128

9+
base {
10+
archivesName = project.archives_base_name
11+
}
12+
1313
repositories {
1414
maven {
1515
name = "CottonMC"
1616
url = "https://server.bbkr.space/artifactory/libs-release"
1717
}
18-
18+
1919
maven {
2020
name = "TerraformersMC"
2121
url = "https://maven.terraformersmc.com/releases"
@@ -39,37 +39,40 @@ processResources {
3939
filesMatching("fabric.mod.json") {
4040
expand "version": project.version
4141
}
42-
42+
4343
exclude("**/icon.pdn")
4444
exclude("**/icon400.png")
4545
}
4646

47-
test {
48-
useJUnit()
49-
maxHeapSize = '1G'
50-
}
51-
5247
tasks.withType(JavaCompile).configureEach {
5348
// ensure that the encoding is set to UTF-8, no matter what the system default is
5449
// this fixes some edge cases with special characters not displaying correctly
5550
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
5651
// If Javadoc is generated, this must be specified in that task too.
5752
it.options.encoding = "UTF-8"
58-
59-
// Minecraft 1.18 (1.18-pre2) upwards uses Java 17.
60-
it.options.release = 17
53+
54+
it.options.release = 21
6155
}
6256

6357
java {
6458
withSourcesJar()
59+
60+
sourceCompatibility = JavaVersion.VERSION_21
61+
targetCompatibility = JavaVersion.VERSION_21
6562
}
6663

6764
jar {
65+
inputs.property "archivesName", project.base.archivesName
66+
6867
from("LICENSE") {
6968
rename { "${it}_${project.archivesBaseName}"}
7069
}
7170
}
7271

72+
test {
73+
useJUnit()
74+
maxHeapSize = '1G'
75+
}
7376

7477
publishing {
7578
publications {

gradle.properties

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Done to increase the memory available to gradle.
22
org.gradle.jvmargs=-Xmx1G
33

4-
mod_version = 1.20.1-1.4.1
4+
mod_version = 1.21.4-1.5.0
55
maven_group = me.neophyte.mods.savecoords
66
archives_base_name = save-coordinates
77

8-
minecraft_version=1.20.1
9-
yarn_mappings=1.20.1+build.9
10-
loader_version=0.14.21
8+
# Lookup versions from https://fabricmc.net/develop/
9+
minecraft_version=1.21.4
10+
yarn_mappings=1.21.4+build.8
11+
loader_version=0.16.10
12+
fabric_version=0.119.2+1.21.4
1113

12-
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
13-
fabric_version=0.85.0+1.20.1
1414
# https://github.com/CottonMC/LibGui/wiki/Setup
15-
libgui_version=8.0.1+1.20
15+
libgui_version=12.0.1+1.21.2
1616
# https://maven.terraformersmc.com/releases/com/terraformersmc/modmenu/
17-
modmenu_version=7.1.0
17+
modmenu_version=13.0.3

gradle/wrapper/gradle-wrapper.jar

-15.3 KB
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)