Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Roman Elizarov | f16fd27 | 2017-02-07 11:26:00 +0300 | [diff] [blame] | 2 | <!-- |
| 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 Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 18 | <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 Elizarov | 60de4b3 | 2017-03-17 18:05:35 +0300 | [diff] [blame] | 26 | <version>0.14</version> |
Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 27 | <packaging>pom</packaging> |
| 28 | |
Roman Elizarov | d6b5a7b | 2017-02-07 19:26:04 +0300 | [diff] [blame] | 29 | <description>Coroutines support libraries for Kotlin 1.1</description> |
| 30 | |
Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 31 | <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 Elizarov | 1dccb67 | 2017-01-19 12:25:02 +0300 | [diff] [blame] | 50 | <id>bintray</id> |
| 51 | <name>bintray</name> |
Roman Elizarov | 32b3fb3 | 2017-02-16 15:38:34 +0300 | [diff] [blame] | 52 | <url>http://dl.bintray.com/kotlin/kotlin-eap-1.1</url> |
Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 53 | </repository> |
| 54 | </repositories> |
| 55 | |
| 56 | <pluginRepositories> |
| 57 | <pluginRepository> |
Roman Elizarov | 1dccb67 | 2017-01-19 12:25:02 +0300 | [diff] [blame] | 58 | <id>bintray</id> |
| 59 | <name>bintray</name> |
Roman Elizarov | 32b3fb3 | 2017-02-16 15:38:34 +0300 | [diff] [blame] | 60 | <url>http://dl.bintray.com/kotlin/kotlin-eap-1.1</url> |
Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 61 | </pluginRepository> |
Roman Elizarov | 6c53d76 | 2017-01-24 17:04:40 +0300 | [diff] [blame] | 62 | <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 Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 67 | </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 Elizarov | 52d1987 | 2017-03-17 17:46:54 +0300 | [diff] [blame] | 80 | <kotlin.version>1.1.1</kotlin.version> |
Roman Elizarov | 331750b | 2017-02-15 17:59:17 +0300 | [diff] [blame] | 81 | <dokka.version>0.9.14</dokka.version> |
Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 82 | <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 Gorbunov | bc00073 | 2017-03-09 19:19:23 +0300 | [diff] [blame] | 94 | <url>https://api.bintray.com/maven/kotlin/kotlinx/kotlinx.coroutines</url> |
Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 95 | </repository> |
| 96 | </distributionManagement> |
| 97 | |
| 98 | <modules> |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 99 | <module>kotlinx-coroutines-core</module> |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 100 | <module>kotlinx-coroutines-jdk8</module> |
| 101 | <module>kotlinx-coroutines-nio</module> |
Roman Elizarov | 37bf00e | 2017-03-09 12:16:05 +0300 | [diff] [blame] | 102 | <module>reactive/kotlinx-coroutines-reactive</module> |
Konrad KamiĆski | 3ae898c | 2017-03-30 17:37:00 +0200 | [diff] [blame^] | 103 | <module>reactive/kotlinx-coroutines-reactor</module> |
Roman Elizarov | 37bf00e | 2017-03-09 12:16:05 +0300 | [diff] [blame] | 104 | <module>reactive/kotlinx-coroutines-rx1</module> |
| 105 | <module>reactive/kotlinx-coroutines-rx2</module> |
| 106 | <module>reactive/kotlinx-coroutines-rx-example</module> |
Roman Elizarov | 23f864e | 2017-03-03 19:57:47 +0300 | [diff] [blame] | 107 | <module>ui/kotlinx-coroutines-swing</module> |
| 108 | <module>ui/kotlinx-coroutines-javafx</module> |
| 109 | <module>ui/kotlinx-coroutines-android</module> |
Roman Elizarov | d6b5a7b | 2017-02-07 19:26:04 +0300 | [diff] [blame] | 110 | <module>site</module> |
Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 111 | </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 Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 126 | </dependencies> |
| 127 | |
| 128 | <build> |
Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 129 | <plugins> |
| 130 | <plugin> |
| 131 | <artifactId>maven-source-plugin</artifactId> |
| 132 | <configuration> |
| 133 | </configuration> |
Denis Zharkov | fec9b2a | 2016-12-16 14:01:25 +0300 | [diff] [blame] | 134 | <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 Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 143 | </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 Elizarov | 54c3175 | 2017-01-20 18:03:46 +0300 | [diff] [blame] | 164 | <configuration> |
| 165 | <args> |
| 166 | <arg>-Xcoroutines=enable</arg> |
| 167 | </args> |
| 168 | </configuration> |
Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 169 | </plugin> |
Roman Elizarov | 6c53d76 | 2017-01-24 17:04:40 +0300 | [diff] [blame] | 170 | <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 Elizarov | d6b5a7b | 2017-02-07 19:26:04 +0300 | [diff] [blame] | 190 | <includes> |
| 191 | <include>${project.basedir}/README.md</include> |
| 192 | </includes> |
| 193 | <outputFormat>kotlin-website</outputFormat> |
Roman Elizarov | c00eb84 | 2017-02-22 15:03:00 +0300 | [diff] [blame] | 194 | <jdkVersion>8</jdkVersion> |
Roman Elizarov | d6b5a7b | 2017-02-07 19:26:04 +0300 | [diff] [blame] | 195 | </configuration> |
| 196 | </plugin> |
| 197 | <plugin> |
| 198 | <artifactId>maven-site-plugin</artifactId> |
| 199 | <configuration> |
| 200 | <skip>true</skip> |
Roman Elizarov | 6c53d76 | 2017-01-24 17:04:40 +0300 | [diff] [blame] | 201 | </configuration> |
| 202 | </plugin> |
Denis Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 203 | </plugins> |
Roman Elizarov | d6b5a7b | 2017-02-07 19:26:04 +0300 | [diff] [blame] | 204 | |
| 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 Zharkov | 8e4e0e4 | 2016-06-22 18:27:19 +0300 | [diff] [blame] | 239 | </build> |
| 240 | </project> |