blob: c18fe1215e19540a33097480d77cf3c7e2c6392e [file] [log] [blame]
Denis Zharkov8e4e0e42016-06-22 18:27:19 +03001<?xml version="1.0" encoding="UTF-8"?>
Roman Elizarovf16fd272017-02-07 11:26:00 +03002<!--
3 ~ Copyright 2016-2017 JetBrains s.r.o.
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030018<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.jetbrains.kotlinx</groupId>
24 <artifactId>kotlinx-coroutines</artifactId>
Roman Elizarov59e190d2017-02-14 11:05:07 +030025 <version>0.9-rc-SNAPSHOT</version>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030026 </parent>
27
Roman Elizarov3754f952017-01-18 20:47:54 +030028 <artifactId>kotlinx-coroutines-core</artifactId>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030029 <packaging>jar</packaging>
30
Roman Elizarov49ebab92017-01-24 12:20:06 +030031 <properties>
32 <kotlin.compiler.jdkHome>${env.JDK_16}</kotlin.compiler.jdkHome>
33 </properties>
34
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030035 <build>
36 <sourceDirectory>src/main/kotlin</sourceDirectory>
37 <testSourceDirectory>src/test/kotlin</testSourceDirectory>
Roman Elizarov49ebab92017-01-24 12:20:06 +030038
39 <plugins>
40 <plugin>
41 <artifactId>maven-surefire-plugin</artifactId>
42 <configuration>
43 <forkMode>once</forkMode>
44 <jvm>${env.JDK_16}/bin/java</jvm>
Roman Elizarov9700de32017-02-07 11:39:41 +030045 <argLine>-ea -Xmx1g -Xms1g</argLine>
Roman Elizarov49ebab92017-01-24 12:20:06 +030046 </configuration>
47 </plugin>
Roman Elizarova198bad2017-02-10 13:30:38 +030048 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-jar-plugin</artifactId>
51 <executions>
52 <execution>
53 <goals>
54 <goal>test-jar</goal>
55 </goals>
56 </execution>
57 </executions>
58 </plugin>
Roman Elizarov49ebab92017-01-24 12:20:06 +030059 </plugins>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030060 </build>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030061</project>