File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ version = module_version
20
20
group = " com.projectessentials.backup"
21
21
archivesBaseName = module_name
22
22
23
+ configurations {
24
+ internal
25
+ implementation. extendsFrom internal
26
+ }
27
+
23
28
minecraft {
24
29
mappings channel : forge_mappings_channel_type, version : forge_mappings_channel_version
25
30
}
@@ -44,10 +49,12 @@ dependencies {
44
49
implementation " org.jetbrains.kotlinx:kotlinx-serialization-runtime:$kotlinx_serialization_version "
45
50
implementation " org.jetbrains.kotlin:kotlin-stdlib-$kotlin_jdk_version_target :$kotlin_version "
46
51
implementation " org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_version "
47
- implementation ' net.lingala.zip4j:zip4j:2.6.1'
52
+ internal ' net.lingala.zip4j:zip4j:2.6.1'
48
53
}
49
54
50
55
jar {
56
+ from configurations. internal. collect { it. isDirectory() ? it : zipTree(it) }
57
+
51
58
manifest {
52
59
attributes([
53
60
" Specification-Title" : module_name,
You can’t perform that action at this time.
0 commit comments