• 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>framework</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>junit</groupId>
24      <artifactId>junit</artifactId>
25      <version>${junit.version}</version>
26      <scope>test</scope>
27    </dependency>
28  </dependencies>
29
30  <build>
31    <plugins>
32      <plugin>
33        <groupId>org.apache.maven.plugins</groupId>
34        <artifactId>maven-jar-plugin</artifactId>
35        <executions>
36          <execution>
37            <goals>
38              <goal>test-jar</goal>
39            </goals>
40          </execution>
41        </executions>
42        <configuration>
43          <archive>
44            <manifestEntries>
45              <Main-Class>com.ibm.icu.dev.test.TestAll</Main-Class>
46            </manifestEntries>
47          </archive>
48        </configuration>
49      </plugin>
50    </plugins>
51  </build>
52
53</project>
54