Write Kotlin-Version to runtime artifacts built with Maven

Add a test that checks that Kotlin-Version and Kotlin-Runtime-Component have
been written to all relevant runtime libraries
This commit is contained in:
Alexander Udalov
2016-12-21 15:42:48 +03:00
parent 21f79cd737
commit c4f731b987
12 changed files with 281 additions and 2 deletions
@@ -38,6 +38,21 @@
<artifactId>kotlin-js-library</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jre7</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jre8</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>