pom.xml revision 2d896efcc2d48cf85c77f07751b3e1f918d419b3
1<?xml version="1.0"?>
2<!--
3*******************************************************************************
4* Copyright (C) 2010-2015, International Business Machines Corporation and    *
5* others. All Rights Reserved.                                                *
6*******************************************************************************
7-->
8<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10  <modelVersion>4.0.0</modelVersion>
11
12  <groupId>com.ibm.icu</groupId>
13  <artifactId>icu4j</artifactId>
14  <version>56.1</version>
15
16  <name>ICU4J</name>
17  <description>
18    International Component for Unicode for Java (ICU4J) is a mature, widely used Java library
19    providing Unicode and Globalization support 
20  </description>
21  <url>http://icu-project.org/</url>
22  <inceptionYear>2001</inceptionYear>
23  <licenses>
24    <license>
25      <name>ICU License</name>
26      <url>http://source.icu-project.org/repos/icu/icu/trunk/license.html</url>
27      <distribution>repo</distribution>
28    </license>
29  </licenses>
30
31  <developers>
32    <developer>
33      <id>mark</id>
34      <name>Mark Davis</name>
35      <organization>Google</organization>
36      <roles>
37        <role>PMC Member</role>
38      </roles>
39    </developer>
40    <developer>
41      <id>emmons</id>
42      <name>John Emmons</name>
43      <organization>IBM Corporation</organization>
44      <roles>
45        <role>PMC Member</role>
46      </roles>
47    </developer>
48    <developer>
49      <id>doug</id>
50      <name>Doug Felt</name>
51      <organization>Google</organization>
52      <roles>
53        <role>PMC Member</role>
54      </roles>
55    </developer>
56    <developer>
57      <id>deborah</id>
58      <name>Deborah Goldsmith</name>
59      <organization>Apple</organization>
60      <roles>
61        <role>PMC Member</role>
62      </roles>
63    </developer>
64    <developer>
65      <id>srl</id>
66      <name>Steven Loomis</name>
67      <organization>IBM Corporation</organization>
68      <roles>
69        <role>PMC Member</role>
70      </roles>
71    </developer>
72    <developer>
73      <id>markus</id>
74      <name>Markus Scherer</name>
75      <organization>Google</organization>
76      <roles>
77        <role>PMC Member</role>
78      </roles>
79    </developer>
80    <developer>
81      <id>pedberg</id>
82      <name>Peter Edberg</name>
83      <organization>Apple</organization>
84      <roles>
85        <role>PMC Member</role>
86      </roles>
87    </developer>
88    <developer>
89      <id>yoshito</id>
90      <name>Yoshito Umaoka</name>
91      <organization>IBM Corporation</organization>
92      <roles>
93        <role>PMC Member</role>
94      </roles>
95    </developer>
96  </developers>
97
98  <mailingLists>
99    <mailingList>
100      <name>icu-support</name>
101      <subscribe>https://lists.sourceforge.net/lists/listinfo/icu-support</subscribe>
102      <unsubscribe>https://lists.sourceforge.net/lists/listinfo/icu-support</unsubscribe>
103      <post>icu-support@lists.sourceforge.net</post>
104      <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=icu-support</archive>
105    </mailingList>
106    <mailingList>
107      <name>icu-announce</name>
108      <subscribe>https://lists.sourceforge.net/lists/listinfo/icu-announce</subscribe>
109      <unsubscribe>https://lists.sourceforge.net/lists/listinfo/icu-announce</unsubscribe>
110      <post>icu-announce@lists.sourceforge.net</post>
111      <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=icu-announce</archive>
112    </mailingList>
113    <mailingList>
114      <name>icu-design</name>
115      <subscribe>https://lists.sourceforge.net/lists/listinfo/icu-design</subscribe>
116      <unsubscribe>https://lists.sourceforge.net/lists/listinfo/icu-design</unsubscribe>
117      <post>icu-design@lists.sourceforge.net</post>
118      <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=icu-design</archive>
119    </mailingList>
120  </mailingLists>
121
122  <scm>
123    <connection>scm:svn:http://source.icu-project.org/repos/icu/icu4j/trunk/</connection>
124    <developerConnection>scm:svn:http://source.icu-project.org/repos/icu/icu4j/trunk/</developerConnection>
125    <url>http://source.icu-project.org/repos/icu/icu4j/trunk/</url>
126  </scm>
127  <issueManagement>
128    <system>Trac</system>
129    <url>http://bugs.icu-project.org/trac/</url>
130  </issueManagement>
131
132  <distributionManagement>
133    <repository>
134      <id>icu4j-releases</id>
135      <name>ICU4J Central Repository</name>
136      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
137    </repository>
138    <snapshotRepository>
139      <id>icu4j-snapshots</id>
140      <name>ICU4J Central Development Repository</name>
141      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
142    </snapshotRepository>
143  </distributionManagement>
144</project>
145