Home | History | Annotate | Download | only in geocoder
      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.66</version>
      7   <packaging>jar</packaging>
      8   <url>https://github.com/googlei18n/libphonenumber/</url>
      9 
     10   <parent>
     11     <groupId>com.googlecode.libphonenumber</groupId>
     12     <artifactId>libphonenumber-parent</artifactId>
     13     <version>8.3.3</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         <version>1.15</version>
     44         <executions>
     45           <execution>
     46             <phase>test</phase>
     47             <goals>
     48               <goal>check</goal>
     49             </goals>
     50           </execution>
     51         </executions>
     52         <configuration>
     53           <signature>
     54             <groupId>org.codehaus.mojo.signature</groupId>
     55             <artifactId>java15</artifactId>
     56             <version>1.0</version>
     57           </signature>
     58         </configuration>
     59       </plugin>
     60     </plugins>
     61   </build>
     62 
     63   <dependencies>
     64     <dependency>
     65       <groupId>com.googlecode.libphonenumber</groupId>
     66       <artifactId>libphonenumber</artifactId>
     67       <version>8.3.3</version>
     68     </dependency>
     69     <dependency>
     70       <groupId>com.googlecode.libphonenumber</groupId>
     71       <artifactId>prefixmapper</artifactId>
     72       <version>2.66</version>
     73     </dependency>
     74   </dependencies>
     75 
     76 </project>
     77