• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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>core</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>framework</artifactId>
25      <version>${project.version}</version>
26      <type>test-jar</type>
27      <scope>test</scope>
28    </dependency>
29
30    <dependency>
31      <groupId>junit</groupId>
32      <artifactId>junit</artifactId>
33      <version>${junit.version}</version>
34      <scope>test</scope>
35    </dependency>
36    <dependency>
37      <groupId>pl.pragmatists</groupId>
38      <artifactId>JUnitParams</artifactId>
39      <version>${junitparams.version}</version>
40      <scope>test</scope>
41    </dependency>
42    <dependency>
43      <groupId>com.google.code.gson</groupId>
44      <artifactId>gson</artifactId>
45      <version>${gson.version}</version>
46      <scope>test</scope>
47    </dependency>
48  </dependencies>
49
50  <build>
51    <plugins>
52      <plugin>
53        <groupId>org.codehaus.mojo</groupId>
54        <artifactId>build-helper-maven-plugin</artifactId>
55        <executions>
56          <execution>
57            <!-- Test files shared between ICU4C and ICU4J -->
58            <id>add-test-resource</id>
59            <goals>
60              <goal>add-test-resource</goal>
61            </goals>
62            <configuration>
63              <resources>
64                <resource>
65                  <directory>${rootlocation}/../testdata/</directory>
66                  <includes>
67                    <include>message2/**</include>
68                  </includes>
69                </resource>
70              </resources>
71            </configuration>
72          </execution>
73        </executions>
74      </plugin>
75      <plugin>
76        <groupId>org.apache.maven.plugins</groupId>
77        <artifactId>maven-jar-plugin</artifactId>
78        <executions>
79          <execution>
80            <goals>
81              <goal>test-jar</goal>
82            </goals>
83          </execution>
84        </executions>
85        <configuration>
86          <archive>
87            <manifestEntries>
88              <Main-Class>com.ibm.icu.util.VersionInfo</Main-Class>
89            </manifestEntries>
90          </archive>
91        </configuration>
92      </plugin>
93    </plugins>
94  </build>
95
96</project>
97