132 lines
4.9 KiB
XML
132 lines
4.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- © 2019 and later: Unicode, Inc. and others.
|
|
License & terms of use: http://www.unicode.org/copyright.html
|
|
See README.txt for instructions on updating the local repository.
|
|
-->
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<groupId>org.unicode.icu</groupId>
|
|
<artifactId>cldr-to-icu</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
<configuration>
|
|
<source>8</source>
|
|
<target>8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.6.0</version>
|
|
<configuration>
|
|
<mainClass>
|
|
org.unicode.icu.tool.cldrtoicu.LdmlConverter
|
|
</mainClass>
|
|
<systemProperties>
|
|
<property>
|
|
<key>ICU_DIR</key>
|
|
<value>${project.basedir}/../../..</value>
|
|
</property>
|
|
</systemProperties>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>compile</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>
|
|
org.unicode.icu.tool.cldrtoicu.LdmlConverter
|
|
</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<!-- This is where the snapshots of the CLDR API and additional auxiliary JAR files are held. -->
|
|
<repositories>
|
|
<repository>
|
|
<id>local-maven-repo</id>
|
|
<url>file:///${project.basedir}/lib</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- Local dependencies (see lib/README.txt). -->
|
|
<dependency>
|
|
<groupId>org.unicode.cldr</groupId>
|
|
<artifactId>cldr-api</artifactId>
|
|
<version>0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.ibm.icu</groupId>
|
|
<artifactId>icu-utilities</artifactId>
|
|
<version>0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- ICU4J - which should be kept as up-to-date as possible. -->
|
|
<dependency>
|
|
<groupId>com.ibm.icu</groupId>
|
|
<artifactId>icu4j</artifactId>
|
|
<version>64.2</version>
|
|
</dependency>
|
|
|
|
<!-- Useful common libraries. Note that some of the code in the CLDR library is also
|
|
built against a version of Guava that might not be as recent as this, so they
|
|
be kept approximately in sync for good measure. -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>27.1-jre</version>
|
|
</dependency>
|
|
|
|
<!-- Ant: Only used for running the conversion tool, not compiling it. -->
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
<version>1.10.6</version>
|
|
</dependency>
|
|
|
|
<!-- Testing only dependencies. -->
|
|
<dependency>
|
|
<groupId>com.google.truth</groupId>
|
|
<artifactId>truth</artifactId>
|
|
<version>1.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.truth.extensions</groupId>
|
|
<artifactId>truth-java8-extension</artifactId>
|
|
<version>1.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|