1 <?xml version="1.0" encoding="UTF-8"?> 2 <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" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 4 <modelVersion>4.0.0</modelVersion> 5 <groupId>org.jetbrains.kotlin</groupId> 6 <artifactId>kotlin-stdlib</artifactId> 7 <version>1.1.3</version> 8 <name>org.jetbrains.kotlin:kotlin-stdlib</name> 9 <description>Kotlin Standard Library</description> 10 <url>https://kotlinlang.org/</url> 11 <licenses> 12 <license> 13 <name>The Apache License, Version 2.0</name> 14 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 15 </license> 16 </licenses> 17 <developers> 18 <developer> 19 <name>Kotlin Team</name> 20 <organization>JetBrains</organization> 21 <organizationUrl>https://www.jetbrains.com</organizationUrl> 22 </developer> 23 </developers> 24 <scm> 25 <connection>scm:git:https://github.com/JetBrains/kotlin.git</connection> 26 <developerConnection>scm:git:https://github.com/JetBrains/kotlin.git</developerConnection> 27 <url>https://github.com/JetBrains/kotlin</url> 28 </scm> 29 <dependencies> 30 <dependency> 31 <groupId>org.jetbrains</groupId> 32 <artifactId>annotations</artifactId> 33 <version>13.0</version> 34 <scope>compile</scope> 35 </dependency> 36 <dependency> 37 <groupId>org.jetbrains.kotlin</groupId> 38 <artifactId>kotlin-test-junit</artifactId> 39 <version>1.1.3</version> 40 <scope>test</scope> 41 </dependency> 42 </dependencies> 43 </project> 44