@@ -11,11 +11,6 @@ val flywheelVersion = "1.0.1-11"
11
11
val ponderVersion = " 1.0.44"
12
12
val registrateVersion = " 1.3.77-MC1.21.1"
13
13
val milkLibVersion = " 1.2.60"
14
- val portLibVersion = " 2.3.8+1.20.1"
15
- val portLibModules = listOf (
16
- " accessors" , " base" , " entity" , " extensions" , " networking" , " obj_loader" ,
17
- " tags" , " transfer" , " models" , " tool_actions" , " client_events" , " brewing"
18
- )
19
14
20
15
// external dependencies
21
16
val configApiVersion = " 21.1.3"
@@ -75,7 +70,6 @@ repositories {
75
70
maven(" https://maven.fabricmc.net" ) // FAPI, Loader
76
71
maven(" https://maven.createmod.net" ) // Ponder, Flywheel
77
72
maven(" https://mvn.devos.one/snapshots" ) // Registrate, Forge Tags, Milk Lib
78
- maven(" https://mvn.devos.one/releases" ) // Porting Lib
79
73
maven(" https://raw.githubusercontent.com/Fuzss/modresources/main/maven" ) // Forge Config API Port
80
74
maven(" https://maven.shedaniel.me" ) // REI and deps
81
75
maven(" https://api.modrinth.com/maven" ) { // LazyDFU, Sodium, Sandwichable
@@ -106,12 +100,8 @@ dependencies {
106
100
107
101
// dependencies
108
102
modImplementation(" net.fabricmc.fabric-api:fabric-api:$fapiVersion " )
109
- for (module in portLibModules) {
110
- modApi(include(" io.github.fabricators_of_create.Porting-Lib:$module :$portLibVersion " )!! )
111
- }
112
- modApi(include(" com.tterrag.registrate_fabric:Registrate:$registrateVersion " ) {
113
- exclude(mapOf (" group" to " io.github.fabricators_of_create" )) // avoid duplicate Porting Lib
114
- })
103
+
104
+ modApi(include(" com.tterrag.registrate_fabric:Registrate:$registrateVersion " )!! )
115
105
modApi(include(" com.electronwill.night-config:core:$nightConfigVersion " )!! )
116
106
modApi(include(" com.electronwill.night-config:toml:$nightConfigVersion " )!! )
117
107
modApi(include(" fuzs.forgeconfigapiport:forgeconfigapiport-fabric:$configApiVersion " )!! )
@@ -193,7 +183,6 @@ loom {
193
183
vmArg(" -Dfabric-api.datagen" )
194
184
vmArg(" -Dfabric-api.datagen.output-dir=${file(" src/generated/resources" )} " )
195
185
vmArg(" -Dfabric-api.datagen.modid=create" )
196
- vmArg(" -Dporting_lib.datagen.existing_resources=${file(" src/main/resources" )} " )
197
186
}
198
187
199
188
register(" gametestServer" ) {
@@ -238,11 +227,6 @@ tasks.named<ProcessResources>("processResources") {
238
227
" milk_lib_version" to milkLibVersion
239
228
)
240
229
241
- for (module in portLibModules) {
242
- properties[" port_lib_${module} _version" ] = portLibVersion
243
- }
244
- properties[" port_lib_tags_version" ] = " 3.0" // the weird one
245
-
246
230
inputs.properties(properties)
247
231
248
232
filesMatching(" fabric.mod.json" ) {
0 commit comments