1
1
import java.time.Instant
2
2
3
3
plugins {
4
- id(/* net.fabricmc.*/ " fabric-loom" ) version " 1.0.17"
4
+ id(/* net.fabricmc.*/ " fabric-loom" ) version " 1.2.5"
5
+ id(" io.github.juuxel.loom-quiltflower" ) version " 1.8.0"
5
6
id(" net.nemerosa.versioning" ) version " 3.0.0"
6
7
id(" org.gradle.signing" )
7
8
}
8
9
9
10
group = " dev.sapphic"
10
- version = " 1.7.5 +1.19.3 "
11
+ version = " 1.7.6 +1.19.4 "
11
12
12
13
if (" CI" in System .getenv()) {
13
14
version = " $version -${versioning.info.build} "
@@ -17,6 +18,10 @@ java {
17
18
withSourcesJar()
18
19
}
19
20
21
+ quiltflower {
22
+ preferences.patternMatching(0 )
23
+ }
24
+
20
25
loom {
21
26
accessWidenerPath.set(file(" .accesswidener" ))
22
27
@@ -53,29 +58,29 @@ repositories {
53
58
}
54
59
55
60
dependencies {
56
- minecraft(" com.mojang:minecraft:1.19.3 " )
61
+ minecraft(" com.mojang:minecraft:1.19.4 " )
57
62
mappings(loom.layered {
58
63
officialMojangMappings {
59
64
nameSyntheticMembers = true
60
65
}
61
66
})
62
67
63
- modImplementation(" net.fabricmc:fabric-loader:0.14.12 " )
68
+ modImplementation(" net.fabricmc:fabric-loader:0.14.19 " )
64
69
65
- implementation(" org.jetbrains:annotations:23.1.0 " )
66
- implementation(" org.checkerframework:checker-qual:3.29 .0" )
70
+ implementation(" org.jetbrains:annotations:24.0.1 " )
71
+ implementation(" org.checkerframework:checker-qual:3.33 .0" )
67
72
68
73
fun fabricApiModule (moduleName : String ): Dependency =
69
- fabricApi.module(moduleName, " 0.72 .0+1.19.3 " )
74
+ fabricApi.module(moduleName, " 0.80 .0+1.19.4 " )
70
75
71
76
modImplementation(include(fabricApiModule(" fabric-api-base" ))!! )
72
77
modImplementation(include(fabricApiModule(" fabric-networking-api-v1" ))!! )
73
78
modImplementation(include(fabricApiModule(" fabric-registry-sync-v0" ))!! )
74
79
modImplementation(include(fabricApiModule(" fabric-resource-loader-v0" ))!! )
75
80
76
- modImplementation(include(" com.jamieswhiteshirt:reach-entity-attributes:2.3.1 " )!! )
81
+ modImplementation(include(" com.jamieswhiteshirt:reach-entity-attributes:2.3.2 " )!! )
77
82
78
- modRuntimeOnly(" com.terraformersmc:modmenu:5.0 .2" )
83
+ modRuntimeOnly(" com.terraformersmc:modmenu:6.2 .2" )
79
84
}
80
85
81
86
tasks {
0 commit comments