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
+12
View File
@@ -108,6 +108,18 @@
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Kotlin-Version>${kotlin.language.version}</Kotlin-Version>
<Kotlin-Runtime-Component>Core</Kotlin-Runtime-Component>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>