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