Manage dependencies for kotlin-stdlib-jdk7/8
As explained in the "Split package compatibility" section of https://blog.jetbrains.com/kotlin/2017/09/kotlin-1-2-beta-is-out/ kotlin-stdlib-jdk7 and kotlin-stdlib-jdk8 are the recommended dependencies to use with Kotlin 1.2 for Java 9+ compatibility. Closes gh-11716
This commit is contained in:
parent
9fb4290579
commit
d1b18b75d7
|
@ -1938,6 +1938,16 @@
|
|||
<artifactId>kotlin-stdlib</artifactId>
|
||||
<version>${kotlin.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-stdlib-jdk7</artifactId>
|
||||
<version>${kotlin.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||
<version>${kotlin.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-stdlib-jre7</artifactId>
|
||||
|
|
Loading…
Reference in New Issue