Add module for common stdlib

This commit is contained in:
Ilya Gorbunov
2016-12-15 19:32:50 +03:00
parent 75992173b6
commit d381b56d47
2 changed files with 86 additions and 0 deletions
+1
View File
@@ -82,6 +82,7 @@
<module>tools/runtime</module>
<module>tools/script-runtime</module>
<module>kotlin.test</module>
<module>stdlib/common</module>
<module>stdlib</module>
<module>stdlib/jre7</module>
<module>stdlib/jre8</module>
+85
View File
@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-project</artifactId>
<version>1.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>kotlin-stdlib-common</artifactId>
<properties>
<kotlin-home>${kotlin-dist}/kotlinc</kotlin-home>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>serialize-declarations</id>
<phase>compile</phase>
<configuration>
<target>
<delete dir="${basedir}/target/classes" failonerror="false"/>
<mkdir dir="${basedir}/target/classes"/>
<local name="src.line"/>
<path id="src.path">
<union>
<fileset dir="${basedir}/../src/kotlin">
<include name="internal/Annotations.kt" />
</fileset>
<fileset dir="${basedir}/src">
<include name="**/*.kt" />
</fileset>
</union>
</path>
<pathconvert property="src.line" refid="src.path" pathsep=" "/>
<java classname="org.jetbrains.kotlin.preloading.Preloader" failonerror="true" fork="true">
<classpath>
<pathelement location="${kotlin-home}/lib/kotlin-preloader.jar"/>
</classpath>
<assertions>
<enable/>
</assertions>
<!--
<jvmarg value="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005"/>
-->
<arg value="-cp"/>
<arg value="${kotlin-home}/lib/kotlin-compiler.jar"/>
<arg value="org.jetbrains.kotlin.cli.metadata.K2MetadataCompiler"/>
<arg value="-Xallow-kotlin-package" />
<arg value="-d"/>
<arg value="${basedir}/target/classes"/>
<arg line="${src.line}"/>
</java>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>