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.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 <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 <executions> 31 <execution> 32 <phase>test</phase> 33 <goals> 34 <goal>check</goal> 35 </goals> 36 </execution> 37 </executions> 38 <configuration> 39 <signature> 40 <groupId>org.codehaus.mojo.signature</groupId> 41 <artifactId>java15</artifactId> 42 <version>1.0</version> 43 </signature> 44 </configuration> 45 </plugin> 46 </plugins> 47 </build> 48 49 <dependencies> 50 <dependency> 51 <groupId>com.googlecode.libphonenumber</groupId> 52 <artifactId>libphonenumber</artifactId> 53 <version>8.12.48</version> 54 </dependency> 55 </dependencies> 56 57</project> 58