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.56</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>8.3.3</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    <plugins>
32      <plugin>
33        <groupId>org.codehaus.mojo</groupId>
34        <artifactId>animal-sniffer-maven-plugin</artifactId>
35        <version>1.15</version>
36        <executions>
37          <execution>
38            <phase>test</phase>
39            <goals>
40              <goal>check</goal>
41            </goals>
42          </execution>
43        </executions>
44        <configuration>
45          <signature>
46            <groupId>org.codehaus.mojo.signature</groupId>
47            <artifactId>java15</artifactId>
48            <version>1.0</version>
49          </signature>
50        </configuration>
51      </plugin>
52    </plugins>
53  </build>
54
55  <dependencies>
56    <dependency>
57      <groupId>com.googlecode.libphonenumber</groupId>
58      <artifactId>libphonenumber</artifactId>
59      <version>8.3.3</version>
60    </dependency>
61    <dependency>
62      <groupId>com.googlecode.libphonenumber</groupId>
63      <artifactId>prefixmapper</artifactId>
64      <version>2.66</version>
65    </dependency>
66  </dependencies>
67
68</project>
69