| <?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> |
| </parent> |
| |
| <artifactId>kotlin-stdlib</artifactId> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.jetbrains.kotlin</groupId> |
| <artifactId>kotlin-runtime</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.12</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <sourceDirectory>src</sourceDirectory> |
| <testSourceDirectory>test</testSourceDirectory> |
| |
| <plugins> |
| <plugin> |
| <groupId>org.jetbrains.kotlin</groupId> |
| <artifactId>kotlin-maven-plugin</artifactId> |
| <version>${project.version}</version> |
| |
| <configuration> |
| <args> |
| <arg>-Xallow-kotlin-package</arg> |
| </args> |
| </configuration> |
| |
| <executions> |
| <execution> |
| <id>compile</id> |
| <phase>process-sources</phase> |
| <goals> |
| <goal>compile</goal> |
| </goals> |
| <configuration> |
| <args combine.children="append"> |
| <arg>-Xmultifile-parts-inherit</arg> |
| <arg>-Xdump-declarations-to</arg> |
| <arg>${basedir}/target/stdlib-declarations.json</arg> |
| </args> |
| </configuration> |
| </execution> |
| |
| <execution> |
| <id>test-compile</id> |
| <phase>test-compile</phase> |
| <goals> |
| <goal>test-compile</goal> |
| </goals> |
| <configuration> |
| <args combine.children="append"> |
| <arg>-Xmulti-platform</arg> |
| </args> |
| <sourceDirs> |
| <dir>${project.basedir}/test</dir> |
| <dir>${project.basedir}/../kotlin.test/common/src/main/kotlin</dir> |
| <dir>${project.basedir}/../kotlin.test/jvm/src/main/kotlin</dir> |
| <dir>${project.basedir}/../kotlin.test/junit/src/main/kotlin</dir> |
| </sourceDirs> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-shade-plugin</artifactId> |
| <version>2.4.3</version> |
| <configuration> |
| <artifactSet> |
| <includes> |
| <include>org.jetbrains.kotlin:kotlin-runtime</include> |
| </includes> |
| </artifactSet> |
| <filters> |
| <filter> |
| <artifact>org.jetbrains.kotlin:kotlin-runtime</artifact> |
| <excludes> |
| <exclude>META-INF/maven/**</exclude> |
| </excludes> |
| </filter> |
| </filters> |
| <promoteTransitiveDependencies>true</promoteTransitiveDependencies> |
| <dependencyReducedPomLocation>${basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation> |
| <createSourcesJar>true</createSourcesJar> |
| </configuration> |
| <executions> |
| <execution> |
| <phase>package</phase> |
| <goals> |
| <goal>shade</goal> |
| </goals> |
| </execution> |
| </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>Main</Kotlin-Runtime-Component> |
| </manifestEntries> |
| </archive> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <forkMode>once</forkMode> |
| <jvm>${env.JDK_16}/bin/java</jvm> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |