1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3* © 2023 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 7 <modelVersion>4.0.0</modelVersion> 8 <parent> 9 <groupId>com.ibm.icu</groupId> 10 <artifactId>icu4j-root</artifactId> 11 <version>76.1</version> 12 <relativePath>../../pom.xml</relativePath> 13 </parent> 14 15 <artifactId>icu4j-charset</artifactId> 16 <description>icu4j-charset is a supplemental library for icu4j, implementing Java Charset SPI.</description> 17 <url>${proj.url}</url> 18 <scm> 19 <connection>${proj.scm.connection}</connection> 20 <developerConnection>${proj.scm.developerConnection}</developerConnection> 21 <url>${proj.scm.url}</url> 22 </scm> 23 24 <properties> 25 <icu4j.api.doc.root.dir>${project.basedir}/../..</icu4j.api.doc.root.dir> 26 <module-name>charset</module-name> 27 <proj.displayname>charset</proj.displayname> 28 </properties> 29 30 <dependencies> 31 <dependency> 32 <groupId>com.ibm.icu</groupId> 33 <artifactId>icu4j</artifactId> 34 <version>${project.version}</version> 35 </dependency> 36 37 <dependency> 38 <groupId>com.ibm.icu</groupId> 39 <artifactId>core</artifactId> 40 <version>${project.version}</version> 41 <type>test-jar</type> 42 <scope>test</scope> 43 </dependency> 44 <dependency> 45 <groupId>com.ibm.icu</groupId> 46 <artifactId>framework</artifactId> 47 <version>${project.version}</version> 48 <type>test-jar</type> 49 <scope>test</scope> 50 </dependency> 51 52 <dependency> 53 <groupId>junit</groupId> 54 <artifactId>junit</artifactId> 55 <version>${junit.version}</version> 56 <scope>test</scope> 57 </dependency> 58 <dependency> 59 <groupId>pl.pragmatists</groupId> 60 <artifactId>JUnitParams</artifactId> 61 <version>${junitparams.version}</version> 62 <scope>test</scope> 63 </dependency> 64 65 </dependencies> 66 67 <build> 68 <plugins> 69 <plugin> 70 <artifactId>maven-jar-plugin</artifactId> 71 <configuration> 72 <archive> 73 <manifestEntries> 74 <Export-Package>com.ibm.icu.charset</Export-Package> 75 </manifestEntries> 76 </archive> 77 </configuration> 78 </plugin> 79 <plugin> 80 <groupId>org.codehaus.mojo</groupId> 81 <artifactId>flatten-maven-plugin</artifactId> 82 </plugin> 83 <plugin> 84 <artifactId>maven-deploy-plugin</artifactId> 85 <!-- We want to deploy this to Maven --> 86 <configuration> 87 <skip>false</skip> 88 </configuration> 89 </plugin> 90 </plugins> 91 </build> 92 93</project> 94