Skip to content

Commit a8198a2

Browse files
committed
kotlinx-coroutines added as dependency.
Signed-off-by: Pavel Erokhin (MairwunNx) <MairwunNx@gmail.com>
1 parent 2047d16 commit a8198a2

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff 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

113115
jar {
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([

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ kotlin_jdk_version_target=jdk8
1313
project_jvm_version_target=1.8
1414
kotlin_version=1.3.61
1515
kotlinx_serialization_version=0.14.0
16+
kotlinx_coroutines_core_version=1.3.3
1617
zt_zip_version=1.13
1718
ess_core_version=v1.14.4-1.1.+
1819
ess_perm_version=v1.14.4-1.1.+

0 commit comments

Comments
 (0)