File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -721,9 +721,7 @@ if (usesShadowedDependencies.toBoolean()) {
721
721
relocationPrefix = modGroup + " .shadow"
722
722
enableRelocation = true
723
723
}
724
- exclude(" META-INF/maven" )
725
- exclude(" META-INF/versions" )
726
- exclude(" META-INF/LICENSE" )
724
+ exclude(" META-INF/versions/" )
727
725
}
728
726
configurations. runtimeElements. outgoing. artifacts. clear()
729
727
configurations. apiElements. outgoing. artifacts. clear()
Original file line number Diff line number Diff line change
1
+ import javax.swing.plaf.metal.MetalIconFactory
2
+ import java.nio.file.Files
3
+
1
4
/*
2
5
* Add your dependencies here. Supported configurations:
3
6
* - api("group:name:version:classifier"): if you use the types from this dependency in the public API of this mod
@@ -41,7 +44,9 @@ dependencies {
41
44
42
45
shadowCompile fileTree(dir : ' output' , include : ' *.jar' )
43
46
44
- shadowCompile " org.slf4j:slf4j-api:${ project.slf4j_version} "
45
- shadowCompile " org.yaml:snakeyaml:${ project.snake_yml_version} "
47
+ shadowCompile(" org.slf4j:slf4j-api:${ project.slf4j_version} " )
48
+ shadowCompile(" org.yaml:snakeyaml:${ project.snake_yml_version} " ) {
49
+ exclude module : " META-INF/versions/"
50
+ }
46
51
compileOnlyApi(" io.netty:netty-all:4.0.23.Final" )
47
52
}
Original file line number Diff line number Diff line change @@ -101,4 +101,4 @@ org.gradle.java.installations.fromEnv=JDK8
101
101
102
102
# Misc Libraries
103
103
snake_yml_version =2.2
104
- slf4j_version =2.0.14
104
+ slf4j_version =2.0.16
You can’t perform that action at this time.
0 commit comments