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 </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 <dependency> 42 <groupId>commons-cli</groupId> 43 <artifactId>commons-cli</artifactId> 44 <version>${commons-cli.version}</version> 45 </dependency> 46 </dependencies> 47 48 <build> 49 <plugins> 50 <plugin> 51 <!-- Copy dependencies by default, so that everythign is easier to run 52 without having to explicitly list all kind of folders in classpath. 53 Just use `./target/*` and `./target/dependency/*` 54 --> 55 <artifactId>maven-dependency-plugin</artifactId> 56 <executions> 57 <execution> 58 <id>copy-dependencies</id> 59 <phase>package</phase> 60 <goals> 61 <goal>copy-dependencies</goal> 62 </goals> 63 </execution> 64 </executions> 65 </plugin> 66 </plugins> 67 </build> 68 69</project> 70