1<project
2        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4	<modelVersion>4.0.0</modelVersion>
5	<groupId>org.scala-lang</groupId>
6	<artifactId>scala-library</artifactId>
7	<packaging>jar</packaging>
8	<version>2.10.3</version>
9  <name>Scala Library</name>
10  <description>Standard library for the Scala Programming Language</description>
11	<url>http://www.scala-lang.org/</url>
12   <inceptionYear>2002</inceptionYear>
13   <organization>
14      <name>LAMP/EPFL</name>
15      <url>http://lamp.epfl.ch/</url>
16   </organization>
17   <licenses>
18      <license>
19         <name>BSD-like</name>
20         <url>http://www.scala-lang.org/downloads/license.html
21         </url>
22         <distribution>repo</distribution>
23      </license>
24   </licenses>
25   <scm>
26      <connection>scm:git:git://github.com/scala/scala.git</connection>
27      <url>https://github.com/scala/scala.git</url>
28   </scm>
29   <issueManagement>
30      <system>JIRA</system>
31      <url>https://issues.scala-lang.org/</url>
32   </issueManagement>
33   <properties>
34       <info.apiURL>http://www.scala-lang.org/api/2.10.3/</info.apiURL>
35   </properties>
36   <dependencies>
37      <!--<dependency>
38         <groupId>com.typesafe</groupId>
39         <artifactId>config</artifactId>
40         <version>0.4.0</version>
41     </dependency>-->
42   </dependencies>
43   <distributionManagement>
44      <repository>
45         <id>scala-tools.org</id>
46         <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
47      </repository>
48      <snapshotRepository>
49         <id>scala-tools.org</id>
50         <url>https://oss.sonatype.org/content/repositories/snapshots</url>
51         <uniqueVersion>false</uniqueVersion>
52      </snapshotRepository>
53  </distributionManagement>
54  <developers>
55    <developer>
56      <id>lamp</id>
57      <name>EPFL LAMP</name>
58    </developer>
59    <developer>
60      <id>Typesafe</id>
61      <name>Typesafe, Inc.</name>
62    </developer>
63  </developers>
64</project>
65