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>74.1-SNAPSHOT</version> 12 </parent> 13 14 <artifactId>perf-tests</artifactId> 15 16 <properties> 17 <module-name>perf_tests</module-name> 18 </properties> 19 20 <dependencies> 21 <dependency> 22 <groupId>com.ibm.icu</groupId> 23 <artifactId>core</artifactId> 24 <version>${project.version}</version> 25 </dependency> 26 <dependency> 27 <groupId>com.ibm.icu</groupId> 28 <artifactId>collate</artifactId> 29 <version>${project.version}</version> 30 </dependency> 31 <dependency> 32 <groupId>com.ibm.icu</groupId> 33 <artifactId>icu4j-charset</artifactId> 34 <version>${project.version}</version> 35 </dependency> 36 <dependency> 37 <groupId>com.ibm.icu</groupId> 38 <artifactId>tools_misc</artifactId> 39 <version>${project.version}</version> 40 </dependency> 41 </dependencies> 42 43 <build> 44 <plugins> 45 <plugin> 46 <artifactId>maven-deploy-plugin</artifactId> 47 <!-- We don't want to deploy this to Maven --> 48 <configuration> 49 <skip>true</skip> 50 </configuration> 51 </plugin> 52 </plugins> 53 </build> 54 55</project> 56