Add parent pom reference to idl2k module.

Tie kotlin-version of dependencies to the version of parent project being built.
This commit is contained in:
Ilya Gorbunov
2016-09-30 20:47:57 +03:00
parent a55273646a
commit 0180c614c0
+9 -2
View File
@@ -4,12 +4,19 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jetbrains.kotlin</groupId>
<parent>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-project</artifactId>
<version>1.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>idl2k</artifactId>
<version>1.1-SNAPSHOT</version>
<properties>
<kotlin.version>1.1-SNAPSHOT</kotlin.version>
<kotlin.version>${project.version}</kotlin.version>
<antlr.version>4.5</antlr.version>
</properties>