|
| 1 | +<!-- |
| 2 | +Copyright 2015 Google Inc. All Rights Reserved. |
| 3 | +
|
| 4 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + you may not use this file except in compliance with the License. |
| 6 | + You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | + Unless required by applicable law or agreed to in writing, software |
| 11 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + See the License for the specific language governing permissions and |
| 14 | + limitations under the License. |
| 15 | +--> |
| 16 | +<project> |
| 17 | + <modelVersion>4.0.0</modelVersion> |
| 18 | + <packaging>war</packaging> |
| 19 | + <version>1.0-SNAPSHOT</version> |
| 20 | + <groupId>com.example.appengine</groupId> |
| 21 | + <artifactId>appengine-URLFetch</artifactId> |
| 22 | + <parent> |
| 23 | + <groupId>com.google.cloud</groupId> |
| 24 | + <artifactId>doc-samples</artifactId> |
| 25 | + <version>1.0.0</version> |
| 26 | + <relativePath>../..</relativePath> |
| 27 | + </parent> |
| 28 | + <dependencies> |
| 29 | + <dependency> |
| 30 | + <groupId>javax.servlet</groupId> |
| 31 | + <artifactId>servlet-api</artifactId> |
| 32 | + <type>jar</type> |
| 33 | + <scope>provided</scope> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>org.json</groupId> |
| 37 | + <artifactId>json</artifactId> |
| 38 | + <version>20160212</version> |
| 39 | + </dependency> |
| 40 | + </dependencies> |
| 41 | + <build> |
| 42 | + <!-- for hot reload of the web application --> |
| 43 | + <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory> |
| 44 | + <plugins> |
| 45 | + <plugin> |
| 46 | + <groupId>org.apache.maven.plugins</groupId> |
| 47 | + <version>3.3</version> |
| 48 | + <artifactId>maven-compiler-plugin</artifactId> |
| 49 | + <configuration> |
| 50 | + <source>1.7</source> |
| 51 | + <target>1.7</target> |
| 52 | + </configuration> |
| 53 | + </plugin> |
| 54 | + <!-- Parent POM defines ${appengine.sdk.version} (updates frequently). --> |
| 55 | + <plugin> |
| 56 | + <groupId>com.google.appengine</groupId> |
| 57 | + <artifactId>appengine-maven-plugin</artifactId> |
| 58 | + <version>${appengine.sdk.version}</version> |
| 59 | + </plugin> |
| 60 | + </plugins> |
| 61 | + </build> |
| 62 | +</project> |
0 commit comments