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>core</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>framework</artifactId> 25 <version>${project.version}</version> 26 <type>test-jar</type> 27 <scope>test</scope> 28 </dependency> 29 30 <dependency> 31 <groupId>junit</groupId> 32 <artifactId>junit</artifactId> 33 <version>${junit.version}</version> 34 <scope>test</scope> 35 </dependency> 36 <dependency> 37 <groupId>pl.pragmatists</groupId> 38 <artifactId>JUnitParams</artifactId> 39 <version>${junitparams.version}</version> 40 <scope>test</scope> 41 </dependency> 42 <dependency> 43 <groupId>com.google.code.gson</groupId> 44 <artifactId>gson</artifactId> 45 <version>${gson.version}</version> 46 <scope>test</scope> 47 </dependency> 48 </dependencies> 49 50 <build> 51 <plugins> 52 <plugin> 53 <groupId>org.apache.maven.plugins</groupId> 54 <artifactId>maven-jar-plugin</artifactId> 55 <executions> 56 <execution> 57 <goals> 58 <goal>test-jar</goal> 59 </goals> 60 </execution> 61 </executions> 62 <configuration> 63 <archive> 64 <manifestEntries> 65 <Main-Class>com.ibm.icu.util.VersionInfo</Main-Class> 66 </manifestEntries> 67 </archive> 68 </configuration> 69 </plugin> 70 <plugin> 71 <artifactId>maven-deploy-plugin</artifactId> 72 <!-- We don't want to deploy this to Maven --> 73 <configuration> 74 <skip>true</skip> 75 </configuration> 76 </plugin> 77 </plugins> 78 </build> 79 80</project> 81