• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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>prefixmapper</artifactId>
6  <version>2.66</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    <relativePath>../../pom.xml</relativePath>
15  </parent>
16
17  <build>
18    <sourceDirectory>src</sourceDirectory>
19    <testSourceDirectory>test</testSourceDirectory>
20    <testResources>
21      <testResource>
22        <directory>../../geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data</directory>
23        <targetPath>com/google/i18n/phonenumbers/geocoding/testing_data</targetPath>
24      </testResource>
25    </testResources>
26    <plugins>
27      <plugin>
28        <groupId>org.codehaus.mojo</groupId>
29        <artifactId>animal-sniffer-maven-plugin</artifactId>
30        <version>1.15</version>
31        <executions>
32          <execution>
33            <phase>test</phase>
34            <goals>
35              <goal>check</goal>
36            </goals>
37          </execution>
38        </executions>
39        <configuration>
40          <signature>
41            <groupId>org.codehaus.mojo.signature</groupId>
42            <artifactId>java15</artifactId>
43            <version>1.0</version>
44          </signature>
45        </configuration>
46      </plugin>
47    </plugins>
48  </build>
49
50  <dependencies>
51    <dependency>
52      <groupId>com.googlecode.libphonenumber</groupId>
53      <artifactId>libphonenumber</artifactId>
54      <version>8.3.3</version>
55    </dependency>
56  </dependencies>
57
58</project>
59