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.184</version> 7 <packaging>jar</packaging> 8 <url>https://github.com/google/libphonenumber/</url> 9 10 <parent> 11 <groupId>com.googlecode.libphonenumber</groupId> 12 <artifactId>libphonenumber-parent</artifactId> 13 <version>8.12.48</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 <plugins> 40 <plugin> 41 <groupId>org.codehaus.mojo</groupId> 42 <artifactId>animal-sniffer-maven-plugin</artifactId> 43 <executions> 44 <execution> 45 <phase>test</phase> 46 <goals> 47 <goal>check</goal> 48 </goals> 49 </execution> 50 </executions> 51 <configuration> 52 <signature> 53 <groupId>org.codehaus.mojo.signature</groupId> 54 <artifactId>java15</artifactId> 55 <version>1.0</version> 56 </signature> 57 </configuration> 58 </plugin> 59 </plugins> 60 </build> 61 62 <dependencies> 63 <dependency> 64 <groupId>com.googlecode.libphonenumber</groupId> 65 <artifactId>libphonenumber</artifactId> 66 <version>8.12.48</version> 67 </dependency> 68 <dependency> 69 <groupId>com.googlecode.libphonenumber</groupId> 70 <artifactId>prefixmapper</artifactId> 71 <version>2.184</version> 72 </dependency> 73 </dependencies> 74 75</project> 76