File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -108,10 +108,18 @@ dependencies {
108108 )
109109 compile(" org.zeroturnaround:zt-zip:$zt_zip_version " )
110110 embed(" org.zeroturnaround:zt-zip:$zt_zip_version " )
111+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_core_version " )
112+ embed(" org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_core_version " )
111113}
112114
113115jar {
114- from configurations. embed. collect { it. isDirectory() ? it : zipTree(it) }
116+ from configurations. embed. collect {
117+ if (it. name != " kotlin-stdlib-1.3.61.jar" &&
118+ it. name != " kotlin-stdlib-common-1.3.61.jar"
119+ ) {
120+ it. isDirectory() ? it : zipTree(it)
121+ }
122+ }
115123
116124 manifest {
117125 attributes([
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ kotlin_jdk_version_target=jdk8
1313project_jvm_version_target =1.8
1414kotlin_version =1.3.61
1515kotlinx_serialization_version =0.14.0
16+ kotlinx_coroutines_core_version =1.3.3
1617zt_zip_version =1.13
1718ess_core_version =v1.14.4-1.1.+
1819ess_perm_version =v1.14.4-1.1.+
You can’t perform that action at this time.
0 commit comments