blob: 061d659006d5033e75e66294dc4eaf1fb2f40a21 [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 Elizarovebd7cc92017-02-07 10:23:15 +030026 <version>0.7-beta-SNAPSHOT</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 Elizarov8feb7782017-02-02 22:27:18 +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 Elizarov8feb7782017-02-02 22:27:18 +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>
Stanislav Erokhin621113e2017-02-02 22:15:46 +030080 <kotlin.version>1.1.0-beta-38</kotlin.version>
Roman Elizarov6c53d762017-01-24 17:04:40 +030081 <dokka.version>0.9.13</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>
Denis Zharkovd8dc69f2016-12-21 17:24:19 +030094 <url>https://api.bintray.com/maven/kotlin/kotlin-eap-1.1/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>
100 <module>kotlinx-coroutines-swing</module>
101 <module>kotlinx-coroutines-javafx</module>
102 <module>kotlinx-coroutines-jdk8</module>
103 <module>kotlinx-coroutines-nio</module>
Denis Zharkovf0132672016-07-06 18:55:34 +0300104 <module>kotlinx-coroutines-rx</module>
105 <module>kotlinx-coroutines-rx-example</module>
Roman Elizarovd6b5a7b2017-02-07 19:26:04 +0300106 <module>site</module>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300107 </modules>
108
109 <dependencies>
110 <dependency>
111 <groupId>org.jetbrains.kotlin</groupId>
112 <artifactId>kotlin-stdlib</artifactId>
113 <version>${kotlin.version}</version>
114 <scope>compile</scope>
115 </dependency>
116 <dependency>
117 <groupId>junit</groupId>
118 <artifactId>junit</artifactId>
119 <version>${junit.version}</version>
120 <scope>test</scope>
121 </dependency>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300122 </dependencies>
123
124 <build>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300125 <plugins>
126 <plugin>
127 <artifactId>maven-source-plugin</artifactId>
128 <configuration>
129 </configuration>
Denis Zharkovfec9b2a2016-12-16 14:01:25 +0300130 <executions>
131 <execution>
132 <phase>package</phase>
133 <id>attach-sources</id>
134 <goals>
135 <goal>jar-no-fork</goal>
136 </goals>
137 </execution>
138 </executions>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300139 </plugin>
140
141 <plugin>
142 <groupId>org.jetbrains.kotlin</groupId>
143 <artifactId>kotlin-maven-plugin</artifactId>
144 <executions>
145 <execution>
146 <id>compile</id>
147 <phase>compile</phase>
148 <goals>
149 <goal>compile</goal>
150 </goals>
151 </execution>
152 <execution>
153 <id>test-compile</id>
154 <phase>test-compile</phase>
155 <goals>
156 <goal>test-compile</goal>
157 </goals>
158 </execution>
159 </executions>
Roman Elizarov54c31752017-01-20 18:03:46 +0300160 <configuration>
161 <args>
162 <arg>-Xcoroutines=enable</arg>
163 </args>
164 </configuration>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300165 </plugin>
Roman Elizarov6c53d762017-01-24 17:04:40 +0300166 <plugin>
167 <groupId>org.jetbrains.dokka</groupId>
168 <artifactId>dokka-maven-plugin</artifactId>
169 <version>${dokka.version}</version>
170 <executions>
171 <execution>
172 <phase>pre-site</phase>
173 <goals>
174 <goal>dokka</goal>
175 </goals>
176 </execution>
177 </executions>
178 <configuration>
179 <sourceLinks>
180 <link>
181 <dir>${project.basedir}/src/main/kotlin</dir>
182 <url>http://github.com/kotlin/kotlinx.coroutines/tree/master/${project.artifactId}/src/main/kotlin</url>
183 <urlSuffix>#L</urlSuffix>
184 </link>
185 </sourceLinks>
Roman Elizarovd6b5a7b2017-02-07 19:26:04 +0300186 <includes>
187 <include>${project.basedir}/README.md</include>
188 </includes>
189 <outputFormat>kotlin-website</outputFormat>
190 </configuration>
191 </plugin>
192 <plugin>
193 <artifactId>maven-site-plugin</artifactId>
194 <configuration>
195 <skip>true</skip>
Roman Elizarov6c53d762017-01-24 17:04:40 +0300196 </configuration>
197 </plugin>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300198 </plugins>
Roman Elizarovd6b5a7b2017-02-07 19:26:04 +0300199
200 <pluginManagement>
201 <plugins>
202 <plugin>
203 <groupId>org.jetbrains.kotlin</groupId>
204 <artifactId>kotlin-maven-plugin</artifactId>
205 <version>${kotlin.version}</version>
206 </plugin>
207 <plugin>
208 <groupId>org.apache.maven.plugins</groupId>
209 <artifactId>maven-source-plugin</artifactId>
210 <version>2.4</version>
211 </plugin>
212 <plugin>
213 <groupId>org.apache.maven.plugins</groupId>
214 <artifactId>maven-release-plugin</artifactId>
215 <version>2.5.2</version>
216 </plugin>
217 <plugin>
218 <groupId>org.apache.maven.plugins</groupId>
219 <artifactId>maven-deploy-plugin</artifactId>
220 <version>2.8.2</version>
221 </plugin>
222 <plugin>
223 <groupId>org.apache.maven.plugins</groupId>
224 <artifactId>maven-surefire-plugin</artifactId>
225 <version>2.19.1</version>
226 </plugin>
227 <plugin>
228 <groupId>org.apache.maven.plugins</groupId>
229 <artifactId>maven-site-plugin</artifactId>
230 <version>3.3</version>
231 </plugin>
232 </plugins>
233 </pluginManagement>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +0300234 </build>
235</project>