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.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 </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.apache.felix</groupId> 42 <artifactId>maven-bundle-plugin</artifactId> 43 <version>5.1.9</version> 44 <configuration> 45 <instructions> 46 <Fragment-Host>com.googlecode.libphonenumber</Fragment-Host> 47 </instructions> 48 </configuration> 49 </plugin> 50 <plugin> 51 <artifactId>maven-jar-plugin</artifactId> 52 <version>3.3.0</version> 53 <executions> 54 <execution> 55 <id>default-jar</id> 56 <configuration> 57 <archive> 58 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> 59 </archive> 60 </configuration> 61 </execution> 62 </executions> 63 </plugin> 64 <plugin> 65 <groupId>org.codehaus.mojo</groupId> 66 <artifactId>animal-sniffer-maven-plugin</artifactId> 67 <executions> 68 <execution> 69 <phase>test</phase> 70 <goals> 71 <goal>check</goal> 72 </goals> 73 </execution> 74 </executions> 75 <configuration> 76 <signature> 77 <groupId>org.codehaus.mojo.signature</groupId> 78 <artifactId>java15</artifactId> 79 <version>1.0</version> 80 </signature> 81 </configuration> 82 </plugin> 83 </plugins> 84 </build> 85 86 <dependencies> 87 <dependency> 88 <groupId>com.googlecode.libphonenumber</groupId> 89 <artifactId>libphonenumber</artifactId> 90 <version>8.13.51</version> 91 </dependency> 92 <dependency> 93 <groupId>com.googlecode.libphonenumber</groupId> 94 <artifactId>prefixmapper</artifactId> 95 <version>2.245</version> 96 </dependency> 97 </dependencies> 98 99</project> 100