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>samples</artifactId> 15 16 <properties> 17 <icu4j.api.doc.root.dir>${project.basedir}/..</icu4j.api.doc.root.dir> 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 </dependencies> 32 33 <build> 34 <plugins> 35 <plugin> 36 <artifactId>maven-deploy-plugin</artifactId> 37 <!-- We don't want to deploy this to Maven --> 38 <configuration> 39 <skip>true</skip> 40 </configuration> 41 </plugin> 42 </plugins> 43 </build> 44 45</project> 46