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
12 lines
322 B
Java
12 lines
322 B
Java
@SuppressWarnings("module") // suppress warning about terminal digit
|
|
module kotlin.stdlib.jdk8 {
|
|
requires transitive kotlin.stdlib;
|
|
requires kotlin.stdlib.jdk7;
|
|
|
|
exports kotlin.collections.jdk8;
|
|
exports kotlin.streams.jdk8;
|
|
exports kotlin.text.jdk8;
|
|
|
|
opens kotlin.internal.jdk8 to kotlin.stdlib;
|
|
}
|