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>demo</artifactId>
6  <version>8.10.21</version>
7  <packaging>jar</packaging>
8  <url>https://github.com/google/libphonenumber/</url>
9  <parent>
10    <groupId>com.googlecode.libphonenumber</groupId>
11    <artifactId>libphonenumber-parent</artifactId>
12    <version>8.10.21</version>
13  </parent>
14
15  <properties>
16    <gae.version>1.9.32</gae.version>
17  </properties>
18
19  <build>
20    <sourceDirectory>src</sourceDirectory>
21    <testSourceDirectory>test</testSourceDirectory>
22    <plugins>
23      <plugin>
24        <groupId>org.apache.maven.plugins</groupId>
25        <artifactId>maven-compiler-plugin</artifactId>
26        <version>2.3.2</version>
27        <configuration>
28          <source>1.6</source>
29	  <target>1.6</target>
30	  <encoding>UTF-8</encoding>
31        </configuration>
32      </plugin>
33      <plugin>
34        <groupId>net.kindleit</groupId>
35        <artifactId>maven-gae-plugin</artifactId>
36        <version>0.9.1</version>
37      </plugin>
38      <plugin>
39        <groupId>org.apache.maven.plugins</groupId>
40        <artifactId>maven-war-plugin</artifactId>
41        <version>2.1.1</version>
42        <configuration>
43          <warSourceDirectory>war</warSourceDirectory>
44        </configuration>
45      </plugin>
46      <plugin>
47        <groupId>org.mortbay.jetty</groupId>
48        <artifactId>maven-jetty-plugin</artifactId>
49        <version>6.1.10</version>
50        <configuration>
51          <webAppSourceDirectory>webapp</webAppSourceDirectory>
52          <scanIntervalSeconds>10</scanIntervalSeconds>
53          <webAppConfig>
54            <contextPath>/</contextPath>
55          </webAppConfig>
56          <connectors>
57            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
58              <port>8080</port>
59              <maxIdleTime>60000</maxIdleTime>
60            </connector>
61          </connectors>
62        </configuration>
63      </plugin>
64    </plugins>
65  </build>
66
67
68  <dependencies>
69    <dependency>
70      <groupId>javax.servlet</groupId>
71      <artifactId>servlet-api</artifactId>
72      <version>2.5</version>
73    </dependency>
74    <dependency>
75      <groupId>commons-io</groupId>
76      <artifactId>commons-io</artifactId>
77      <version>1.3.2</version>
78    </dependency>
79    <dependency>
80      <groupId>commons-fileupload</groupId>
81      <artifactId>commons-fileupload</artifactId>
82      <version>1.3.3</version>
83    </dependency>
84    <dependency>
85      <groupId>commons-lang</groupId>
86      <artifactId>commons-lang</artifactId>
87      <version>2.6</version>
88    </dependency>
89    <dependency>
90      <groupId>com.googlecode.libphonenumber</groupId>
91      <artifactId>libphonenumber</artifactId>
92      <version>8.10.21</version>
93    </dependency>
94    <dependency>
95      <groupId>com.googlecode.libphonenumber</groupId>
96      <artifactId>geocoder</artifactId>
97      <version>2.127</version>
98    </dependency>
99    <dependency>
100      <groupId>com.googlecode.libphonenumber</groupId>
101      <artifactId>carrier</artifactId>
102      <version>1.117</version>
103    </dependency>
104  </dependencies>
105
106</project>
107