@@ -39,9 +39,9 @@ allprojects {
3939 }
4040 }
4141
42+ @Suppress(" UnstableApiUsage" )
4243 configurations {
43- val transitiveImplementation = create(" transitiveImplementation" )
44- implementation.get().extendsFrom(transitiveImplementation)
44+ create(" transitiveImplementation" )
4545
4646 // Required cause loom 0.14 for some reason doesn't remove asm-all 4.1. Ew.
4747 all {
@@ -66,16 +66,16 @@ allprojects {
6666
6767 modImplementation(" net.fabricmc:fabric-loader:${project.properties[" loader_version" ]} " )
6868
69- " transitiveImplementation" (" org.apache.commons:commons-lang3:3.12.0" )
70- " transitiveImplementation" (" commons-io:commons-io:2.11.0" )
71- " transitiveImplementation" (" net.jodah:typetools:${project.properties[" typetools_version" ]} " )
72- " transitiveImplementation" (" com.github.mineLdiver:UnsafeEvents:${project.properties[" unsafeevents_version" ]} " )
73- " transitiveImplementation" (" it.unimi.dsi:fastutil:${project.properties[" fastutil_version" ]} " )
74- " transitiveImplementation" (" com.github.ben-manes.caffeine:caffeine:${project.properties[" caffeine_version" ]} " )
75- " transitiveImplementation" (" com.mojang:datafixerupper:${project.properties[" dfu_version" ]} " )
76- " transitiveImplementation" (" maven.modrinth:spasm:${project.properties[" spasm_version" ]} " )
77- " transitiveImplementation" (" me.carleslc:Simple-Yaml:1.8.4" )
78- " transitiveImplementation" (" net.glasslauncher.mods:GlassConfigAPI:${project.properties[" gcapi_version" ]} " )
69+ " transitiveImplementation" (implementation( " org.apache.commons:commons-lang3:3.12.0" ) as Dependency )
70+ " transitiveImplementation" (implementation( " commons-io:commons-io:2.11.0" ) as Dependency )
71+ " transitiveImplementation" (implementation( " net.jodah:typetools:${project.properties[" typetools_version" ]} " ) as Dependency )
72+ " transitiveImplementation" (implementation( " com.github.mineLdiver:UnsafeEvents:${project.properties[" unsafeevents_version" ]} " ) as Dependency )
73+ " transitiveImplementation" (implementation( " it.unimi.dsi:fastutil:${project.properties[" fastutil_version" ]} " ) as Dependency )
74+ " transitiveImplementation" (implementation( " com.github.ben-manes.caffeine:caffeine:${project.properties[" caffeine_version" ]} " ) as Dependency )
75+ " transitiveImplementation" (implementation( " com.mojang:datafixerupper:${project.properties[" dfu_version" ]} " ) as Dependency )
76+ " transitiveImplementation" (implementation( " maven.modrinth:spasm:${project.properties[" spasm_version" ]} " ) as Dependency )
77+ " transitiveImplementation" (implementation( " me.carleslc:Simple-Yaml:1.8.4" ) as Dependency )
78+ " transitiveImplementation" (modImplementation( " net.glasslauncher.mods:GlassConfigAPI:${project.properties[" gcapi_version" ]} " ) as Dependency )
7979
8080 // convenience stuff
8181 // adds some useful annotations for data classes. does not add any dependencies
0 commit comments