|
|
|
@ -4,7 +4,7 @@ |
|
|
|
<groupId>com.googlecode.libphonenumber</groupId> |
|
|
|
<artifactId>demo</artifactId> |
|
|
|
<version>8.12.51-SNAPSHOT</version> |
|
|
|
<packaging>jar</packaging> |
|
|
|
<packaging>war</packaging> |
|
|
|
<url>https://github.com/google/libphonenumber/</url> |
|
|
|
<parent> |
|
|
|
<groupId>com.googlecode.libphonenumber</groupId> |
|
|
|
@ -13,63 +13,32 @@ |
|
|
|
</parent> |
|
|
|
|
|
|
|
<properties> |
|
|
|
<gae.version>1.9.32</gae.version> |
|
|
|
<app.deploy.project>libphonenumber-hrd</app.deploy.project> |
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
|
|
<maven.compiler.source>1.8</maven.compiler.source> |
|
|
|
<maven.compiler.target>1.8</maven.compiler.target> |
|
|
|
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation> |
|
|
|
<archiveClasses>true</archiveClasses> |
|
|
|
</properties> |
|
|
|
|
|
|
|
<build> |
|
|
|
<sourceDirectory>src</sourceDirectory> |
|
|
|
<testSourceDirectory>test</testSourceDirectory> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
|
<version>2.3.2</version> |
|
|
|
<configuration> |
|
|
|
<source>1.7</source> |
|
|
|
<target>1.7</target> |
|
|
|
<encoding>UTF-8</encoding> |
|
|
|
</configuration> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>net.kindleit</groupId> |
|
|
|
<artifactId>maven-gae-plugin</artifactId> |
|
|
|
<version>0.9.1</version> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-war-plugin</artifactId> |
|
|
|
<version>2.1.1</version> |
|
|
|
<configuration> |
|
|
|
<warSourceDirectory>war</warSourceDirectory> |
|
|
|
</configuration> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.mortbay.jetty</groupId> |
|
|
|
<artifactId>maven-jetty-plugin</artifactId> |
|
|
|
<version>6.1.10</version> |
|
|
|
<configuration> |
|
|
|
<webAppSourceDirectory>webapp</webAppSourceDirectory> |
|
|
|
<scanIntervalSeconds>10</scanIntervalSeconds> |
|
|
|
<webAppConfig> |
|
|
|
<contextPath>/</contextPath> |
|
|
|
</webAppConfig> |
|
|
|
<connectors> |
|
|
|
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> |
|
|
|
<port>8080</port> |
|
|
|
<maxIdleTime>60000</maxIdleTime> |
|
|
|
</connector> |
|
|
|
</connectors> |
|
|
|
</configuration> |
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|
|
|
|
|
<prerequisites> |
|
|
|
<maven>3.5</maven> |
|
|
|
</prerequisites> |
|
|
|
|
|
|
|
<dependencies> |
|
|
|
<!-- Compile/runtime dependencies --> |
|
|
|
<dependency> |
|
|
|
<groupId>com.google.appengine</groupId> |
|
|
|
<artifactId>appengine-api-1.0-sdk</artifactId> |
|
|
|
<version>1.9.96</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>javax.servlet</groupId> |
|
|
|
<artifactId>servlet-api</artifactId> |
|
|
|
<version>2.5</version> |
|
|
|
<type>jar</type> |
|
|
|
<scope>provided</scope> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>commons-io</groupId> |
|
|
|
@ -103,4 +72,17 @@ |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
|
|
|
|
<build> |
|
|
|
<!-- for hot reload of the web application--> |
|
|
|
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
|
<groupId>com.google.cloud.tools</groupId> |
|
|
|
<artifactId>appengine-maven-plugin</artifactId> |
|
|
|
<version>1.3.1</version> |
|
|
|
<configuration> |
|
|
|
</configuration> |
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|
</project> |