File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/main/groovy/io/izzel/taboolib/gradle Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
8
8
}
9
9
10
10
group = " io.izzel.taboolib"
11
- version = " 2.0.5 "
11
+ version = " 2.0.6 "
12
12
13
13
configurations {
14
14
create(" embed" ) {
Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ class TabooLibPlugin implements Plugin<Project> {
80
80
}
81
81
82
82
def kotlinVersion = KotlinPluginWrapperKt . getKotlinPluginVersion(project). replaceAll(" [._-]" , " " )
83
+ def coroutinesVersion = tabooExt. version. coroutines. replaceAll(" [._-]" , " " )
84
+
83
85
def jarTask = project. tasks. jar as Jar
84
86
tabooTask. configure { TabooLibMainTask task ->
85
87
task. tabooExt = tabooExt
@@ -96,6 +98,7 @@ class TabooLibPlugin implements Plugin<Project> {
96
98
}
97
99
if (! tabooExt. version. isSkipKotlinRelocate()) {
98
100
task. relocations[' kotlin.' ] = ' kotlin' + kotlinVersion + ' .'
101
+ task. relocations[' kotlinx.coroutines.' ] = ' kotlinx.coroutines' + coroutinesVersion + ' .'
99
102
}
100
103
}
101
104
}
You can’t perform that action at this time.
0 commit comments