blob: b86efc4f8b452e569f8860a889a0a560e75c86f3 [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 Elizarov8c86afb2017-02-22 15:16:52 +030025 <version>0.11-rc-SNAPSHOT</version>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030026 </parent>
27
Roman Elizarov3754f952017-01-18 20:47:54 +030028 <artifactId>kotlinx-coroutines-nio</artifactId>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030029 <packaging>jar</packaging>
30
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030031 <build>
32 <sourceDirectory>src/main/kotlin</sourceDirectory>
33 <testSourceDirectory>src/test/kotlin</testSourceDirectory>
34 </build>
35
36 <dependencies>
37 <dependency>
Roman Elizarov3754f952017-01-18 20:47:54 +030038 <groupId>org.jetbrains.kotlinx</groupId>
39 <artifactId>kotlinx-coroutines-core</artifactId>
40 <version>${project.version}</version>
41 <scope>compile</scope>
42 </dependency>
43 <dependency>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030044 <groupId>org.apache.commons</groupId>
45 <artifactId>commons-io</artifactId>
46 <version>1.3.2</version>
47 <scope>test</scope>
48 </dependency>
Denis Zharkov8e4e0e42016-06-22 18:27:19 +030049 </dependencies>
50
51</project>