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