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