e3d20a2f5c
- include kotlin.time package Suppress module-info warnings: - terminal digits in module name - open/export for another not yet built dependee module #KT-21266
10 lines
330 B
Java
10 lines
330 B
Java
@SuppressWarnings("module") // suppress warnings about terminal digit and exporting packages to not-yet-built kotlin-stdlib-jdk8
|
|
module kotlin.stdlib.jdk7 {
|
|
requires transitive kotlin.stdlib;
|
|
|
|
exports kotlin.jdk7;
|
|
|
|
exports kotlin.internal.jdk7 to kotlin.stdlib.jdk8;
|
|
opens kotlin.internal.jdk7 to kotlin.stdlib;
|
|
}
|