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>collate</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 28 <!-- Test --> 29 <dependency> 30 <groupId>com.ibm.icu</groupId> 31 <artifactId>core</artifactId> 32 <version>${project.version}</version> 33 <type>test-jar</type> 34 <scope>test</scope> 35 </dependency> 36 <dependency> 37 <groupId>com.ibm.icu</groupId> 38 <artifactId>framework</artifactId> 39 <version>${project.version}</version> 40 <type>test-jar</type> 41 <scope>test</scope> 42 </dependency> 43 <dependency> 44 <groupId>com.ibm.icu</groupId> 45 <artifactId>langdata</artifactId> 46 <version>${project.version}</version> 47 <scope>test</scope> 48 </dependency> 49 <dependency> 50 <groupId>com.ibm.icu</groupId> 51 <artifactId>regiondata</artifactId> 52 <version>${project.version}</version> 53 <scope>test</scope> 54 </dependency> 55 <dependency> 56 <groupId>com.ibm.icu</groupId> 57 <artifactId>currdata</artifactId> 58 <version>${project.version}</version> 59 <scope>test</scope> 60 </dependency> 61 62 <dependency> 63 <groupId>junit</groupId> 64 <artifactId>junit</artifactId> 65 <version>${junit.version}</version> 66 <scope>test</scope> 67 </dependency> 68 </dependencies> 69 70</project> 71