Skip to content

Commit c7b01ca

Browse files
committed
Air Port
1 parent b52cb67 commit c7b01ca

File tree

1 file changed

+21
-27
lines changed

1 file changed

+21
-27
lines changed

build.gradle.kts

Lines changed: 21 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// versions
22
// https://parchmentmc.org/docs/getting-started
3-
val parchmentVersion = "2023.09.03"
3+
val parchmentVersion = "2024.11.17"
44
// https://fabricmc.net/develop/
5-
val minecraftVersion = "1.20.1"
6-
val loaderVersion = "0.16.9"
7-
val fapiVersion = "0.92.3+1.20.1"
5+
val minecraftVersion = "1.21.1"
6+
val loaderVersion = "0.16.10"
7+
val fapiVersion = "0.115.1+1.21.1"
88

99
// in-house dependencies
10-
val flywheelVersion = "1.0.0-217"
11-
val ponderVersion = "1.0.36"
12-
val registrateVersion = "1.3.79-MC1.20.1"
10+
val flywheelVersion = "1.0.1-11"
11+
val ponderVersion = "1.0.44"
12+
val registrateVersion = "1.3.77-MC1.21.1"
1313
val milkLibVersion = "1.2.60"
1414
val portLibVersion = "2.3.8+1.20.1"
1515
val portLibModules = listOf(
@@ -18,39 +18,35 @@ val portLibModules = listOf(
1818
)
1919

2020
// external dependencies
21-
val configApiVersion = "8.0.0"
21+
val configApiVersion = "21.1.3"
2222
val nightConfigVersion = "3.6.3"
23-
// https://maven.jamieswhiteshirt.com/libs-release/com/jamieswhiteshirt/reach-entity-attributes/
24-
val reaVersion = "2.4.0"
2523
val jsr305Version = "3.0.2"
2624

2725
// compat
2826
// https://modrinth.com/mod/cc-tweaked/versions
29-
val ccVersion = "1.106.1"
27+
val ccVersion = "1.115.1"
3028
// for CC - https://modrinth.com/mod/cloth-config/versions
31-
val clothVersion = "11.1.106+fabric"
29+
val clothVersion = "15.0.140+fabric"
3230
// https://modrinth.com/mod/jei/versions
33-
val jeiVersion = "15.19.0.85"
31+
val jeiVersion = "19.21.0.247"
3432
// https://modrinth.com/mod/rei/versions
35-
val reiVersion = "12.0.626"
33+
val reiVersion = "16.0.799"
3634
// https://modrinth.com/mod/emi/versions
37-
val emiVersion = "1.0.9+1.20.1"
35+
val emiVersion = "1.1.20+1.21.1"
3836
// https://modrinth.com/mod/botania
3937
val botaniaVersion = "1.19.2-436-FABRIC"
4038
// https://modrinth.com/mod/modmenu/versions
41-
val modmenuVersion = "7.1.0"
39+
val modmenuVersion = "11.0.3"
4240
// https://modrinth.com/mod/sandwichable/versions
4341
val sandwichableVersion = "1.3.1+1.20.1"
4442
// https://modrinth.com/mod/sodium
45-
val sodiumVersion = "mc1.20.1-0.5.8"
46-
// https://modrinth.com/mod/indium
47-
val indiumVersion = "1.0.30+mc1.20.4"
43+
val sodiumVersion = "mc1.21.1-0.6.9-fabric"
4844
// https://github.com/emilyploszaj/trinkets/releases/
49-
val trinketsVersion = "3.7.0"
45+
val trinketsVersion = "3.10.0"
5046
// for Trinkets - https://modrinth.com/mod/cardinal-components-api/versions
51-
val ccaVersion = "5.2.1"
47+
val ccaVersion = "6.1.2"
5248
// https://modrinth.com/mod/journeymap
53-
val jmVersion = "1.20.1-5.10.3-fabric"
49+
val jmVersion = "1.21.1-6.0.0-beta.39+fabric"
5450
// check the jm jar, it's JiJ
5551
val jmApiVersion = "1.20-1.9-SNAPSHOT"
5652

@@ -59,7 +55,7 @@ val ccRuntime = false
5955
val recipeViewer = "emi" // jei, rei, or emi
6056

6157
plugins {
62-
id("fabric-loom") version "1.9.+"
58+
id("fabric-loom") version "1.10.+"
6359
id("maven-publish")
6460
}
6561

@@ -86,7 +82,7 @@ repositories {
8682
content { includeGroupAndSubgroups("maven.modrinth") }
8783
}
8884
maven("https://maven.terraformersmc.com") // Mod Menu, Trinkets
89-
maven("https://squiddev.cc/maven") // CC:T
85+
maven("https://maven.squiddev.cc") // CC:T
9086
maven("https://modmaven.dev") // Botania
9187
maven("https://maven.jamieswhiteshirt.com/libs-release") { // Reach Entity Attributes
9288
content { includeGroup("com.jamieswhiteshirt") }
@@ -120,7 +116,6 @@ dependencies {
120116
modApi(include("com.electronwill.night-config:toml:$nightConfigVersion")!!)
121117
modApi(include("fuzs.forgeconfigapiport:forgeconfigapiport-fabric:$configApiVersion")!!)
122118
modApi(include("dev.engine-room.flywheel:flywheel-fabric-$minecraftVersion:$flywheelVersion")!!)
123-
modApi(include("com.jamieswhiteshirt:reach-entity-attributes:$reaVersion")!!)
124119
modApi(include("io.github.tropheusj:milk-lib:$milkLibVersion")!!)
125120
api(include("com.google.code.findbugs:jsr305:$jsr305Version")!!)
126121

@@ -240,8 +235,7 @@ tasks.named<ProcessResources>("processResources") {
240235
"loader_version" to loaderVersion,
241236
"fabric_version" to fapiVersion,
242237
"forge_config_version" to configApiVersion,
243-
"milk_lib_version" to milkLibVersion,
244-
"reach_entity_attributes_version" to reaVersion
238+
"milk_lib_version" to milkLibVersion
245239
)
246240

247241
for (module in portLibModules) {

0 commit comments

Comments
 (0)