-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
73 lines (61 loc) · 2.28 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-collections</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<url>https://github.com/ilya-g/kotlinx.collections.experimental</url>
<connection>scm:git:https://github.com/ilya-g/kotlinx.collections.experimental.git</connection>
<developerConnection>scm:git:https://github.com/ilya-g/kotlinx.collections.experimental.git</developerConnection>
</scm>
<developers>
<developer>
<id>JetBrains</id>
<name>JetBrains Team</name>
<organization>JetBrains</organization>
<organizationUrl>http://www.jetbrains.com</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<prerequisites>
<maven>3.0.2</maven>
</prerequisites>
<!--
<distributionManagement>
<repository>
<id>bintray</id>
<url>https://api.bintray.com/maven/kotlin/kotlinx.collections/kotlinx.collections</url>
</repository>
</distributionManagement>
-->
<modules>
<module>kotlinx-collections-experimental</module>
<module>kotlinx-collections-experimental/benchmarks</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>