1<?xml version="1.0"?>
2<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">
3  <modelVersion>4.0.0</modelVersion>
4  <groupId>com.googlecode.libphonenumber</groupId>
5  <artifactId>carrier</artifactId>
6  <version>1.10</version>
7  <packaging>jar</packaging>
8  <url>https://github.com/googlei18n/libphonenumber/</url>
9
10  <parent>
11    <groupId>com.googlecode.libphonenumber</groupId>
12    <artifactId>libphonenumber-parent</artifactId>
13    <version>7.0.4</version>
14  </parent>
15
16  <build>
17    <sourceDirectory>src</sourceDirectory>
18    <testSourceDirectory>test</testSourceDirectory>
19    <resources>
20      <resource>
21        <directory>src/com/google/i18n/phonenumbers/carrier/data</directory>
22        <targetPath>com/google/i18n/phonenumbers/carrier/data</targetPath>
23      </resource>
24    </resources>
25    <testResources>
26      <testResource>
27        <directory>test/com/google/i18n/phonenumbers/carrier/testing_data</directory>
28        <targetPath>com/google/i18n/phonenumbers/carrier/testing_data</targetPath>
29      </testResource>
30    </testResources>
31  </build>
32
33  <dependencies>
34    <dependency>
35      <groupId>com.googlecode.libphonenumber</groupId>
36      <artifactId>libphonenumber</artifactId>
37      <version>7.0.4</version>
38    </dependency>
39    <dependency>
40      <groupId>com.googlecode.libphonenumber</groupId>
41      <artifactId>prefixmapper</artifactId>
42      <version>2.20</version>
43    </dependency>
44  </dependencies>
45
46</project>
47