Use same kotlin version everywhere

This commit is contained in:
Georgios Andrianakis
2019-12-09 00:30:08 +02:00
parent b76f837726
commit 14775e2b6f
4 changed files with 8 additions and 3 deletions

View File

@@ -2261,6 +2261,11 @@
<artifactId>kotlin-compiler-embeddable</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-compiler</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>

View File

@@ -23,7 +23,7 @@
<!-- These properties are needed in order for them to be resolvable by the generated projects -->
<!-- Quarkus uses jboss-parent and it comes with 3.8.0-jboss-2, we don't want that in the templates -->
<compiler-plugin.version>3.8.1</compiler-plugin.version>
<kotlin.version>1.3.21</kotlin.version>
<kotlin.version>1.3.41</kotlin.version>
<scala.version>2.12.8</scala.version>
<scala-plugin.version>4.1.1</scala-plugin.version>

View File

@@ -32,7 +32,7 @@
<!-- These properties are needed in order for them to be resolvable by the generated projects -->
<!-- Quarkus uses jboss-parent and it comes with 3.8.0-jboss-2, we don't want that in the templates -->
<compiler-plugin.version>3.8.1</compiler-plugin.version>
<kotlin.version>1.3.21</kotlin.version>
<kotlin.version>1.3.41</kotlin.version>
<scala.version>2.12.8</scala.version>
<scala-plugin.version>4.1.1</scala-plugin.version>

View File

@@ -12,7 +12,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<kotlin.version>1.3.21</kotlin.version>
<kotlin.version>1.3.41</kotlin.version>
</properties>
<dependencyManagement>
<dependencies>