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.6</version> 7 <packaging>jar</packaging> 8 <url>https://github.com/googlei18n/libphonenumber/</url> 9 <parent> 10 <groupId>com.googlecode.libphonenumber</groupId> 11 <artifactId>libphonenumber-parent</artifactId> 12 <version>8.10.6</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 </configuration> 31 </plugin> 32 <plugin> 33 <groupId>net.kindleit</groupId> 34 <artifactId>maven-gae-plugin</artifactId> 35 <version>0.9.1</version> 36 </plugin> 37 <plugin> 38 <groupId>org.apache.maven.plugins</groupId> 39 <artifactId>maven-war-plugin</artifactId> 40 <version>2.1.1</version> 41 <configuration> 42 <warSourceDirectory>war</warSourceDirectory> 43 </configuration> 44 </plugin> 45 <plugin> 46 <groupId>org.mortbay.jetty</groupId> 47 <artifactId>maven-jetty-plugin</artifactId> 48 <version>6.1.10</version> 49 <configuration> 50 <webAppSourceDirectory>webapp</webAppSourceDirectory> 51 <scanIntervalSeconds>10</scanIntervalSeconds> 52 <webAppConfig> 53 <contextPath>/</contextPath> 54 </webAppConfig> 55 <connectors> 56 <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> 57 <port>8080</port> 58 <maxIdleTime>60000</maxIdleTime> 59 </connector> 60 </connectors> 61 </configuration> 62 </plugin> 63 </plugins> 64 </build> 65 66 67 <dependencies> 68 <dependency> 69 <groupId>javax.servlet</groupId> 70 <artifactId>servlet-api</artifactId> 71 <version>2.5</version> 72 </dependency> 73 <dependency> 74 <groupId>commons-io</groupId> 75 <artifactId>commons-io</artifactId> 76 <version>1.3.2</version> 77 </dependency> 78 <dependency> 79 <groupId>commons-fileupload</groupId> 80 <artifactId>commons-fileupload</artifactId> 81 <version>1.3.3</version> 82 </dependency> 83 <dependency> 84 <groupId>commons-lang</groupId> 85 <artifactId>commons-lang</artifactId> 86 <version>2.6</version> 87 </dependency> 88 <dependency> 89 <groupId>com.googlecode.libphonenumber</groupId> 90 <artifactId>libphonenumber</artifactId> 91 <version>8.10.6</version> 92 </dependency> 93 <dependency> 94 <groupId>com.googlecode.libphonenumber</groupId> 95 <artifactId>geocoder</artifactId> 96 <version>2.112</version> 97 </dependency> 98 <dependency> 99 <groupId>com.googlecode.libphonenumber</groupId> 100 <artifactId>carrier</artifactId> 101 <version>1.102</version> 102 </dependency> 103 </dependencies> 104 105 </project> 106