[maven-release-plugin] prepare for next development iteration
[platform/upstream/libphonenumber.git] / java / demo / pom.xml
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   <parent>
5     <artifactId>libphonenumber-parent</artifactId>
6     <groupId>com.googlecode.libphonenumber</groupId>
7     <version>5.7-SNAPSHOT</version>
8   </parent>
9   <groupId>com.googlecode.libphonenumber</groupId>
10   <artifactId>demo</artifactId>
11   <version>5.7-SNAPSHOT</version>
12
13   <properties>
14     <gae.version>1.5.4</gae.version>
15   </properties>
16
17   <repositories>
18     <repository>
19       <id>mvnrepository</id>
20       <url>http://mvnrepository.com/artifact/</url>
21       <snapshots>
22         <enabled>true</enabled>
23       </snapshots>
24     </repository>
25   </repositories>
26
27   <dependencies>
28     <dependency>
29       <groupId>javax.servlet</groupId>
30       <artifactId>servlet-api</artifactId>
31       <version>2.5</version>
32     </dependency>
33     <dependency>
34       <groupId>org.apache.commons</groupId>
35       <artifactId>commons-io</artifactId>
36       <version>1.3.2</version>
37     </dependency>
38     <dependency>
39       <groupId>commons-fileupload</groupId>
40       <artifactId>commons-fileupload</artifactId>
41       <version>1.2</version>
42     </dependency>
43     <dependency>
44       <groupId>com.googlecode.libphonenumber</groupId>
45       <artifactId>libphonenumber</artifactId>
46       <version>5.7-SNAPSHOT</version>
47     </dependency>
48     <dependency>
49       <groupId>com.googlecode.libphonenumber</groupId>
50       <artifactId>geocoder</artifactId>
51       <version>2.8-SNAPSHOT</version>
52     </dependency>
53   </dependencies>
54
55   <build>
56     <sourceDirectory>src</sourceDirectory>
57     <testSourceDirectory>test</testSourceDirectory>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-compiler-plugin</artifactId>
62         <version>2.3.2</version>
63         <configuration>
64           <source>1.6</source>
65           <target>1.6</target>
66         </configuration>
67       </plugin>
68       <plugin>
69         <groupId>net.kindleit</groupId>
70         <artifactId>maven-gae-plugin</artifactId>
71         <version>0.9.1</version>
72       </plugin>
73       <plugin>
74         <groupId>org.apache.maven.plugins</groupId>
75         <artifactId>maven-war-plugin</artifactId>
76         <version>2.1.1</version>
77         <configuration>
78           <warSourceDirectory>war</warSourceDirectory>
79         </configuration>
80       </plugin>
81       <plugin>
82         <groupId>org.mortbay.jetty</groupId>
83         <artifactId>maven-jetty-plugin</artifactId>
84         <version>6.1.10</version>
85         <configuration>
86           <webAppSourceDirectory>webapp</webAppSourceDirectory>
87           <scanIntervalSeconds>10</scanIntervalSeconds>
88           <webAppConfig>
89             <contextPath>/</contextPath>
90           </webAppConfig>
91           <connectors>
92             <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
93               <port>8080</port>
94               <maxIdleTime>60000</maxIdleTime>
95             </connector>
96           </connectors>
97         </configuration>
98       </plugin>
99     </plugins>
100   </build>
101
102 </project>