mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Using the new multi-release jar feature, store compiled
module-info.class files into META-INF/versions/9 instead of the artifact
root. Hopefully, this will break fewer tools which do not support
module-info.class files because any sane tool should not do anything
with files in META-INF because before Java 9 that directory only
contained resources.
Upgrade some Maven plugins to newer versions which do not fail on
module-info.class files
#KT-21266 In Progress
(cherry picked from commit 2d41c7d462)
6 lines
95 B
Java
6 lines
95 B
Java
module kotlin.stdlib.jdk7 {
|
|
requires transitive kotlin.stdlib;
|
|
|
|
exports kotlin.jdk7;
|
|
}
|