• 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>geocoder</artifactId>
6  <version>2.20</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/geocoding/data</directory>
22        <targetPath>com/google/i18n/phonenumbers/geocoding/data</targetPath>
23      </resource>
24      <resource>
25        <directory>src/com/google/i18n/phonenumbers/timezones/data</directory>
26        <targetPath>com/google/i18n/phonenumbers/timezones/data</targetPath>
27      </resource>
28    </resources>
29    <testResources>
30      <testResource>
31        <directory>test/com/google/i18n/phonenumbers/geocoding/testing_data</directory>
32        <targetPath>com/google/i18n/phonenumbers/geocoding/testing_data</targetPath>
33      </testResource>
34      <testResource>
35        <directory>test/com/google/i18n/phonenumbers/timezones/testing_data</directory>
36        <targetPath>com/google/i18n/phonenumbers/timezones/testing_data</targetPath>
37      </testResource>
38    </testResources>
39  </build>
40
41  <dependencies>
42    <dependency>
43      <groupId>com.googlecode.libphonenumber</groupId>
44      <artifactId>libphonenumber</artifactId>
45      <version>7.0.4</version>
46    </dependency>
47    <dependency>
48      <groupId>com.googlecode.libphonenumber</groupId>
49      <artifactId>prefixmapper</artifactId>
50      <version>2.20</version>
51    </dependency>
52  </dependencies>
53
54</project>
55