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>75.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 </dependencies> 33 34 <build> 35 <plugins> 36 <plugin> 37 <artifactId>maven-jar-plugin</artifactId> 38 <configuration> 39 <archive> 40 <manifestEntries> 41 <Main-Class>com.ibm.icu.dev.tool.localeconverter.XLIFF2ICUConverter</Main-Class> 42 </manifestEntries> 43 </archive> 44 </configuration> 45 </plugin> 46 <plugin> 47 <artifactId>maven-deploy-plugin</artifactId> 48 <!-- We don't want to deploy this to Maven --> 49 <configuration> 50 <skip>true</skip> 51 </configuration> 52 </plugin> 53 </plugins> 54 </build> 55 56</project> 57