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