Skip to content

Commit afd2b1f

Browse files
committed
[2.0.10] Kotlin Version Fix
1 parent 9a2e860 commit afd2b1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "io.izzel.taboolib"
11-
version = "2.0.9"
11+
version = "2.0.10"
1212

1313
configurations {
1414
create("embed") {

src/main/groovy/io/izzel/taboolib/gradle/TabooLibPlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class TabooLibPlugin implements Plugin<Project> {
9999
task.relocations['kotlin.'] = 'kotlin' + kotlinVersion + '.'
100100
if (tabooExt.version.coroutines != null) {
101101
def coroutinesVersion = tabooExt.version.coroutines.replaceAll("[._-]", "")
102-
task.relocations['kotlinx.coroutines.'] = 'kotlinx.coroutines' + coroutinesVersion + '.'
102+
task.relocations['kotlinx.coroutines.'] = 'kotlin' + kotlinVersion + 'x.coroutines' + coroutinesVersion + '.'
103103
}
104104
}
105105
}

0 commit comments

Comments
 (0)