blob: 299631ee1d09e05f0ad69fdeff4e9cd7737432b4 [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
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
20 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
21
22 <modelVersion>4.0.0</modelVersion>
23
24 <groupId>org.jetbrains.kotlinx</groupId>
25 <artifactId>kotlinx-coroutines</artifactId>
Roman Elizarov60de4b32017-03-17 18:05:35 +030026 <version>0.14</version>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030027 <packaging>pom</packaging>
28
Roman Elizarovd6b5a7b2017-02-07 19:26:04 +030029 <description>Coroutines support libraries for Kotlin 1.1</description>
30
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030031 <url>https://github.com/Kotlin/kotlinx.coroutines/</url>
32
33 <licenses>
34 <license>
35 <name>The Apache Software License, Version 2.0</name>
36 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
37 <distribution>repo</distribution>
38 <comments>A business-friendly OSS license</comments>
39 </license>
40 </licenses>
41
42 <scm>
43 <url>https://github.com/Kotlin/kotlinx.coroutines</url>
44 <connection>scm:git:https://github.com/Kotlin/kotlinx.coroutines.git</connection>
45 <developerConnection>scm:git:https://github.com/Kotlin/kotlinx.coroutines.git</developerConnection>
46 </scm>
47
48 <repositories>
49 <repository>
Roman Elizarov1dccb672017-01-19 12:25:02 +030050 <id>bintray</id>
51 <name>bintray</name>
Roman Elizarov32b3fb32017-02-16 15:38:34 +030052 <url>http://dl.bintray.com/kotlin/kotlin-eap-1.1</url>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030053 </repository>
54 </repositories>
55
56 <pluginRepositories>
57 <pluginRepository>
Roman Elizarov1dccb672017-01-19 12:25:02 +030058 <id>bintray</id>
59 <name>bintray</name>
Roman Elizarov32b3fb32017-02-16 15:38:34 +030060 <url>http://dl.bintray.com/kotlin/kotlin-eap-1.1</url>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030061 </pluginRepository>
Roman Elizarov6c53d762017-01-24 17:04:40 +030062 <pluginRepository>
63 <id>bintray-kotlin-dokka</id>
64 <name>bintray-kotlin-dokka</name>
65 <url>http://dl.bintray.com/kotlin/dokka</url>
66 </pluginRepository>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030067 </pluginRepositories>
68
69 <developers>
70 <developer>
71 <id>JetBrains</id>
72 <name>JetBrains Team</name>
73 <organization>JetBrains</organization>
74 <organizationUrl>http://www.jetbrains.com</organizationUrl>
75 </developer>
76 </developers>
77
78 <properties>
79 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Roman Elizarov52d19872017-03-17 17:46:54 +030080 <kotlin.version>1.1.1</kotlin.version>
Roman Elizarov331750b2017-02-15 17:59:17 +030081 <dokka.version>0.9.14</dokka.version>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030082 <junit.version>4.12</junit.version>
83 <maven.compiler.source>1.6</maven.compiler.source>
84 <maven.compiler.target>1.6</maven.compiler.target>
85 </properties>
86
87 <prerequisites>
88 <maven>3.0.2</maven>
89 </prerequisites>
90
91 <distributionManagement>
92 <repository>
93 <id>bintray</id>
Ilya Gorbunovbc000732017-03-09 19:19:23 +030094 <url>https://api.bintray.com/maven/kotlin/kotlinx/kotlinx.coroutines</url>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030095 </repository>
96 </distributionManagement>
97
98 <modules>
Roman Elizarov3754f952017-01-18 20:47:54 +030099 <module>kotlinx-coroutines-core</module>
Roman Elizarov3754f952017-01-18 20:47:54 +0300100 <module>kotlinx-coroutines-jdk8</module>
101 <module>kotlinx-coroutines-nio</module>
Roman Elizarov37bf00e2017-03-09 12:16:05 +0300102 <module>reactive/kotlinx-coroutines-reactive</module>
Konrad KamiƄski3ae898c2017-03-30 17:37:00 +0200103 <module>reactive/kotlinx-coroutines-reactor</module>
Roman Elizarov37bf00e2017-03-09 12:16:05 +0300104 <module>reactive/kotlinx-coroutines-rx1</module>
105 <module>reactive/kotlinx-coroutines-rx2</module>
106 <module>reactive/kotlinx-coroutines-rx-example</module>
Roman Elizarov23f864e2017-03-03 19:57:47 +0300107 <module>ui/kotlinx-coroutines-swing</module>
108 <module>ui/kotlinx-coroutines-javafx</module>
109 <module>ui/kotlinx-coroutines-android</module>
Roman Elizarovd6b5a7b2017-02-07 19:26:04 +0300110 <module>site</module>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300111 </modules>
112
113 <dependencies>
114 <dependency>
115 <groupId>org.jetbrains.kotlin</groupId>
116 <artifactId>kotlin-stdlib</artifactId>
117 <version>${kotlin.version}</version>
118 <scope>compile</scope>
119 </dependency>
120 <dependency>
121 <groupId>junit</groupId>
122 <artifactId>junit</artifactId>
123 <version>${junit.version}</version>
124 <scope>test</scope>
125 </dependency>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300126 </dependencies>
127
128 <build>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300129 <plugins>
130 <plugin>
131 <artifactId>maven-source-plugin</artifactId>
132 <configuration>
133 </configuration>
Denis Zharkovfec9b2a2016-12-16 14:01:25 +0300134 <executions>
135 <execution>
136 <phase>package</phase>
137 <id>attach-sources</id>
138 <goals>
139 <goal>jar-no-fork</goal>
140 </goals>
141 </execution>
142 </executions>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300143 </plugin>
144
145 <plugin>
146 <groupId>org.jetbrains.kotlin</groupId>
147 <artifactId>kotlin-maven-plugin</artifactId>
148 <executions>
149 <execution>
150 <id>compile</id>
151 <phase>compile</phase>
152 <goals>
153 <goal>compile</goal>
154 </goals>
155 </execution>
156 <execution>
157 <id>test-compile</id>
158 <phase>test-compile</phase>
159 <goals>
160 <goal>test-compile</goal>
161 </goals>
162 </execution>
163 </executions>
Roman Elizarov54c31752017-01-20 18:03:46 +0300164 <configuration>
165 <args>
166 <arg>-Xcoroutines=enable</arg>
167 </args>
168 </configuration>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300169 </plugin>
Roman Elizarov6c53d762017-01-24 17:04:40 +0300170 <plugin>
171 <groupId>org.jetbrains.dokka</groupId>
172 <artifactId>dokka-maven-plugin</artifactId>
173 <version>${dokka.version}</version>
174 <executions>
175 <execution>
176 <phase>pre-site</phase>
177 <goals>
178 <goal>dokka</goal>
179 </goals>
180 </execution>
181 </executions>
182 <configuration>
183 <sourceLinks>
184 <link>
185 <dir>${project.basedir}/src/main/kotlin</dir>
186 <url>http://github.com/kotlin/kotlinx.coroutines/tree/master/${project.artifactId}/src/main/kotlin</url>
187 <urlSuffix>#L</urlSuffix>
188 </link>
189 </sourceLinks>
Roman Elizarovd6b5a7b2017-02-07 19:26:04 +0300190 <includes>
191 <include>${project.basedir}/README.md</include>
192 </includes>
193 <outputFormat>kotlin-website</outputFormat>
Roman Elizarovc00eb842017-02-22 15:03:00 +0300194 <jdkVersion>8</jdkVersion>
Roman Elizarovd6b5a7b2017-02-07 19:26:04 +0300195 </configuration>
196 </plugin>
197 <plugin>
198 <artifactId>maven-site-plugin</artifactId>
199 <configuration>
200 <skip>true</skip>
Roman Elizarov6c53d762017-01-24 17:04:40 +0300201 </configuration>
202 </plugin>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300203 </plugins>
Roman Elizarovd6b5a7b2017-02-07 19:26:04 +0300204
205 <pluginManagement>
206 <plugins>
207 <plugin>
208 <groupId>org.jetbrains.kotlin</groupId>
209 <artifactId>kotlin-maven-plugin</artifactId>
210 <version>${kotlin.version}</version>
211 </plugin>
212 <plugin>
213 <groupId>org.apache.maven.plugins</groupId>
214 <artifactId>maven-source-plugin</artifactId>
215 <version>2.4</version>
216 </plugin>
217 <plugin>
218 <groupId>org.apache.maven.plugins</groupId>
219 <artifactId>maven-release-plugin</artifactId>
220 <version>2.5.2</version>
221 </plugin>
222 <plugin>
223 <groupId>org.apache.maven.plugins</groupId>
224 <artifactId>maven-deploy-plugin</artifactId>
225 <version>2.8.2</version>
226 </plugin>
227 <plugin>
228 <groupId>org.apache.maven.plugins</groupId>
229 <artifactId>maven-surefire-plugin</artifactId>
230 <version>2.19.1</version>
231 </plugin>
232 <plugin>
233 <groupId>org.apache.maven.plugins</groupId>
234 <artifactId>maven-site-plugin</artifactId>
235 <version>3.3</version>
236 </plugin>
237 </plugins>
238 </pluginManagement>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300239 </build>
240</project>