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.245</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.13.51</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.apache.felix</groupId> 29 <artifactId>maven-bundle-plugin</artifactId> 30 <version>5.1.9</version> 31 <configuration> 32 <instructions> 33 <Fragment-Host>com.googlecode.libphonenumber</Fragment-Host> 34 </instructions> 35 </configuration> 36 </plugin> 37 <plugin> 38 <artifactId>maven-jar-plugin</artifactId> 39 <version>3.3.0</version> 40 <executions> 41 <execution> 42 <id>default-jar</id> 43 <configuration> 44 <archive> 45 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> 46 </archive> 47 </configuration> 48 </execution> 49 </executions> 50 </plugin> 51 52 <plugin> 53 <groupId>org.codehaus.mojo</groupId> 54 <artifactId>animal-sniffer-maven-plugin</artifactId> 55 <executions> 56 <execution> 57 <phase>test</phase> 58 <goals> 59 <goal>check</goal> 60 </goals> 61 </execution> 62 </executions> 63 <configuration> 64 <signature> 65 <groupId>org.codehaus.mojo.signature</groupId> 66 <artifactId>java15</artifactId> 67 <version>1.0</version> 68 </signature> 69 </configuration> 70 </plugin> 71 </plugins> 72 </build> 73 74 <dependencies> 75 <dependency> 76 <groupId>com.googlecode.libphonenumber</groupId> 77 <artifactId>libphonenumber</artifactId> 78 <version>8.13.51</version> 79 </dependency> 80 </dependencies> 81 82</project> 83