Skip to content

Commit 6655f85

Browse files
committed
kotlinx-coroutines-debug: Soften requirements on bytebuddy & junit
As those dependencies are not *required* to be available at runtime - bytebuddy: Is shadowed and packaged into the -debug.jar - junit: Is optional
1 parent 10a6da3 commit 6655f85

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: kotlinx-coroutines-debug/src/module-info.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
requires java.instrument;
44
requires kotlin.stdlib;
55
requires kotlinx.coroutines.core;
6-
requires net.bytebuddy;
7-
requires net.bytebuddy.agent;
8-
requires org.junit.jupiter.api;
9-
requires org.junit.platform.commons;
6+
requires static net.bytebuddy;
7+
requires static net.bytebuddy.agent;
8+
requires static org.junit.jupiter.api;
9+
requires static org.junit.platform.commons;
1010

1111
// exports kotlinx.coroutines.debug; // already exported by kotlinx.coroutines.core
1212
exports kotlinx.coroutines.debug.junit4;

0 commit comments

Comments
 (0)