• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.198</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.14</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.apache.felix</groupId>
34        <artifactId>maven-bundle-plugin</artifactId>
35        <version>3.2.0</version>
36        <configuration>
37          <instructions>
38          	<Fragment-Host>com.googlecode.libphonenumber</Fragment-Host>
39          </instructions>
40        </configuration>
41      </plugin>
42      <plugin>
43        <artifactId>maven-jar-plugin</artifactId>
44        <version>3.0.2</version>
45        <executions>
46          <execution>
47            <id>default-jar</id>
48            <configuration>
49              <archive>
50                <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
51              </archive>
52            </configuration>
53          </execution>
54		</executions>
55	  </plugin>
56      <plugin>
57        <groupId>org.codehaus.mojo</groupId>
58        <artifactId>animal-sniffer-maven-plugin</artifactId>
59        <executions>
60          <execution>
61            <phase>test</phase>
62            <goals>
63              <goal>check</goal>
64            </goals>
65          </execution>
66        </executions>
67        <configuration>
68          <signature>
69            <groupId>org.codehaus.mojo.signature</groupId>
70            <artifactId>java15</artifactId>
71            <version>1.0</version>
72          </signature>
73        </configuration>
74      </plugin>
75    </plugins>
76  </build>
77
78  <dependencies>
79    <dependency>
80      <groupId>com.googlecode.libphonenumber</groupId>
81      <artifactId>libphonenumber</artifactId>
82      <version>8.13.14</version>
83    </dependency>
84    <dependency>
85      <groupId>com.googlecode.libphonenumber</groupId>
86      <artifactId>prefixmapper</artifactId>
87      <version>2.208</version>
88    </dependency>
89  </dependencies>
90
91</project>
92