Home | History | Annotate | Download | only in demo
      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>7.0.11</version>
      8   </parent>
      9   <groupId>com.googlecode.libphonenumber</groupId>
     10   <artifactId>demo</artifactId>
     11   <version>7.0.11</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>7.0.11</version>
     47     </dependency>
     48     <dependency>
     49       <groupId>com.googlecode.libphonenumber</groupId>
     50       <artifactId>geocoder</artifactId>
     51       <version>2.27</version>
     52     </dependency>
     53     <dependency>
     54       <groupId>com.googlecode.libphonenumber</groupId>
     55       <artifactId>carrier</artifactId>
     56       <version>1.17</version>
     57     </dependency>
     58   </dependencies>
     59 
     60   <build>
     61     <sourceDirectory>src</sourceDirectory>
     62     <testSourceDirectory>test</testSourceDirectory>
     63     <plugins>
     64       <plugin>
     65         <groupId>org.apache.maven.plugins</groupId>
     66         <artifactId>maven-compiler-plugin</artifactId>
     67         <version>2.3.2</version>
     68         <configuration>
     69           <source>1.6</source>
     70           <target>1.6</target>
     71         </configuration>
     72       </plugin>
     73       <plugin>
     74         <groupId>net.kindleit</groupId>
     75         <artifactId>maven-gae-plugin</artifactId>
     76         <version>0.9.1</version>
     77       </plugin>
     78       <plugin>
     79         <groupId>org.apache.maven.plugins</groupId>
     80         <artifactId>maven-war-plugin</artifactId>
     81         <version>2.1.1</version>
     82         <configuration>
     83           <warSourceDirectory>war</warSourceDirectory>
     84         </configuration>
     85       </plugin>
     86       <plugin>
     87         <groupId>org.mortbay.jetty</groupId>
     88         <artifactId>maven-jetty-plugin</artifactId>
     89         <version>6.1.10</version>
     90         <configuration>
     91           <webAppSourceDirectory>webapp</webAppSourceDirectory>
     92           <scanIntervalSeconds>10</scanIntervalSeconds>
     93           <webAppConfig>
     94             <contextPath>/</contextPath>
     95           </webAppConfig>
     96           <connectors>
     97             <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
     98               <port>8080</port>
     99               <maxIdleTime>60000</maxIdleTime>
    100             </connector>
    101           </connectors>
    102         </configuration>
    103       </plugin>
    104     </plugins>
    105   </build>
    106 
    107 </project>
    108