blob: 80257103b9b441613367e7257251717583676024 [file] [log] [blame]
Narayan Kamatha77fadd2014-12-18 11:56:40 +00001<?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>
Narayan Kamatha77fadd2014-12-18 11:56:40 +00004 <groupId>com.googlecode.libphonenumber</groupId>
5 <artifactId>demo</artifactId>
paulye7c797d62019-02-26 11:38:21 -08006 <version>8.10.6</version>
Paul Duffin26ddc142017-07-28 16:12:47 +01007 <packaging>jar</packaging>
8 <url>https://github.com/googlei18n/libphonenumber/</url>
9 <parent>
10 <groupId>com.googlecode.libphonenumber</groupId>
11 <artifactId>libphonenumber-parent</artifactId>
paulye7c797d62019-02-26 11:38:21 -080012 <version>8.10.6</version>
Paul Duffin26ddc142017-07-28 16:12:47 +010013 </parent>
Narayan Kamatha77fadd2014-12-18 11:56:40 +000014
15 <properties>
Paul Duffinc8ad5be2016-02-12 09:58:51 +000016 <gae.version>1.9.32</gae.version>
Narayan Kamatha77fadd2014-12-18 11:56:40 +000017 </properties>
18
Narayan Kamatha77fadd2014-12-18 11:56:40 +000019 <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
Paul Duffin26ddc142017-07-28 16:12:47 +010066
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>
paulye4f21ef92019-01-30 15:12:48 -080081 <version>1.3.3</version>
Paul Duffin26ddc142017-07-28 16:12:47 +010082 </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>
paulye7c797d62019-02-26 11:38:21 -080091 <version>8.10.6</version>
Paul Duffin26ddc142017-07-28 16:12:47 +010092 </dependency>
93 <dependency>
94 <groupId>com.googlecode.libphonenumber</groupId>
95 <artifactId>geocoder</artifactId>
paulye7c797d62019-02-26 11:38:21 -080096 <version>2.112</version>
Paul Duffin26ddc142017-07-28 16:12:47 +010097 </dependency>
98 <dependency>
99 <groupId>com.googlecode.libphonenumber</groupId>
100 <artifactId>carrier</artifactId>
paulye7c797d62019-02-26 11:38:21 -0800101 <version>1.102</version>
Paul Duffin26ddc142017-07-28 16:12:47 +0100102 </dependency>
103 </dependencies>
104
Narayan Kamatha77fadd2014-12-18 11:56:40 +0000105</project>