Skip to content

Commit b9899b5

Browse files
authored
remove the logic to include module-info.class at kotlinx-coroutine-debug (#4314)
1 parent ee92d16 commit b9899b5

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

kotlinx-coroutines-debug/build.gradle.kts

-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import org.gradle.api.JavaVersion
2-
import org.gradle.api.file.DuplicatesStrategy
32
import org.gradle.api.tasks.bundling.Jar
43
import org.gradle.api.tasks.testing.Test
54

@@ -50,18 +49,8 @@ tasks.named<Jar>("jar") {
5049
)
5150
)
5251
}
53-
54-
// add module-info.class to the META-INF/versions/9/ directory.
55-
dependsOn(tasks.compileModuleInfoJava)
56-
from(tasks.compileModuleInfoJava.get().outputs.files.asFileTree.matching {
57-
include("module-info.class")
58-
}) {
59-
this.duplicatesStrategy = DuplicatesStrategy.INCLUDE
60-
into("META-INF/versions/9")
61-
}
6252
}
6353

64-
6554
kover {
6655
reports {
6756
filters {

0 commit comments

Comments
 (0)