Upgrade Kotlin libs

This commit is contained in:
Oleg Zhurakousky
2021-11-11 09:30:30 +01:00
parent e436a48bcb
commit a716662340
3 changed files with 10 additions and 5 deletions

View File

@@ -74,11 +74,13 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.6.0-RC2</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
<version>1.6.0-RC2</version>
<optional>true</optional>
</dependency>
<dependency>
@@ -98,7 +100,7 @@
<plugin>
<artifactId>kotlin-maven-plugin</artifactId>
<groupId>org.jetbrains.kotlin</groupId>
<version>1.4.21</version>
<version>1.6.0-RC2</version>
<configuration>
<args>
<arg>-Xjsr305=strict</arg>
@@ -137,7 +139,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-allopen</artifactId>
<version>1.4.21</version>
<version>1.6.0-RC2</version>
</dependency>
</dependencies>
</plugin>

View File

@@ -27,6 +27,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
<version>1.6.0-RC2</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
@@ -64,7 +65,7 @@
<plugin>
<artifactId>kotlin-maven-plugin</artifactId>
<groupId>org.jetbrains.kotlin</groupId>
<version>1.4.21</version>
<version>1.6.0-RC2</version>
<configuration>
<args>
<arg>-Xjsr305=strict</arg>
@@ -93,7 +94,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-allopen</artifactId>
<version>1.4.21</version>
<version>1.6.0-RC2</version>
</dependency>
</dependencies>
</plugin>

View File

@@ -17,7 +17,7 @@
<properties>
<java.version>1.8</java.version>
<kotlin.version>1.4.21</kotlin.version>
<kotlin.version>1.6.0-RC2</kotlin.version>
</properties>
<dependencies>
@@ -28,10 +28,12 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</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.springframework.cloud</groupId>