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>tools_misc</artifactId> 16 17 <properties> 18 <icu4j.api.doc.root.dir>${project.basedir}/../..</icu4j.api.doc.root.dir> 19 </properties> 20 21 <dependencies> 22 <dependency> 23 <groupId>com.ibm.icu</groupId> 24 <artifactId>core</artifactId> 25 <version>${project.version}</version> 26 </dependency> 27 <dependency> 28 <groupId>com.ibm.icu</groupId> 29 <artifactId>translit</artifactId> 30 <version>${project.version}</version> 31 </dependency> 32 <dependency> 33 <groupId>commons-cli</groupId> 34 <artifactId>commons-cli</artifactId> 35 <version>${commons-cli.version}</version> 36 </dependency> 37 </dependencies> 38 39 <build> 40 <plugins> 41 <plugin> 42 <artifactId>maven-jar-plugin</artifactId> 43 <configuration> 44 <archive> 45 <manifestEntries> 46 <Main-Class>com.ibm.icu.dev.tool.localeconverter.XLIFF2ICUConverter</Main-Class> 47 </manifestEntries> 48 </archive> 49 </configuration> 50 </plugin> 51 </plugins> 52 </build> 53 54</project> 55