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>translit</artifactId> 16 17 <properties> 18 <proj.displayname>transliteration</proj.displayname> 19 <icu4j.api.doc.root.dir>${project.basedir}/../..</icu4j.api.doc.root.dir> 20 </properties> 21 22 <dependencies> 23 <dependency> 24 <groupId>com.ibm.icu</groupId> 25 <artifactId>core</artifactId> 26 <version>${project.version}</version> 27 </dependency> 28 29 <!-- Test --> 30 <dependency> 31 <groupId>com.ibm.icu</groupId> 32 <artifactId>core</artifactId> 33 <version>${project.version}</version> 34 <type>test-jar</type> 35 <scope>test</scope> 36 </dependency> 37 <dependency> 38 <groupId>com.ibm.icu</groupId> 39 <artifactId>framework</artifactId> 40 <version>${project.version}</version> 41 <type>test-jar</type> 42 <scope>test</scope> 43 </dependency> 44 <dependency> 45 <groupId>com.ibm.icu</groupId> 46 <artifactId>langdata</artifactId> 47 <version>${project.version}</version> 48 <scope>test</scope> 49 </dependency> 50 51 <dependency> 52 <groupId>junit</groupId> 53 <artifactId>junit</artifactId> 54 <version>${junit.version}</version> 55 <scope>test</scope> 56 </dependency> 57 <dependency> 58 <groupId>pl.pragmatists</groupId> 59 <artifactId>JUnitParams</artifactId> 60 <version>${junitparams.version}</version> 61 <scope>test</scope> 62 </dependency> 63 </dependencies> 64 65</project> 66