|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +Copyright 2015 Google Inc. All Rights Reserved. |
| 4 | +
|
| 5 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + you may not use this file except in compliance with the License. |
| 7 | + You may obtain a copy of the License at |
| 8 | +
|
| 9 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +
|
| 11 | + Unless required by applicable law or agreed to in writing, software |
| 12 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + See the License for the specific language governing permissions and |
| 15 | + limitations under the License. |
| 16 | +--> |
| 17 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | + <modelVersion>4.0.0</modelVersion> |
| 20 | + <packaging>war</packaging> |
| 21 | + <version>1.0-SNAPSHOT</version> |
| 22 | + <groupId>com.example.appengine</groupId> |
| 23 | + <artifactId>appidentity</artifactId> |
| 24 | + |
| 25 | + <properties> |
| 26 | + <appengine.target.version>1.9.30</appengine.target.version> |
| 27 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | + </properties> |
| 29 | + |
| 30 | + <dependencies> |
| 31 | + <dependency> |
| 32 | + <groupId>com.google.appengine</groupId> |
| 33 | + <artifactId>appengine-api-1.0-sdk</artifactId> |
| 34 | + <version>${appengine.target.version}</version> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>javax.servlet</groupId> |
| 38 | + <artifactId>servlet-api</artifactId> |
| 39 | + <version>2.5</version> |
| 40 | + <type>jar</type> |
| 41 | + <scope>provided</scope> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <!-- Test Dependencies --> |
| 45 | + <dependency> |
| 46 | + <groupId>junit</groupId> |
| 47 | + <artifactId>junit</artifactId> |
| 48 | + <version>4.10</version> |
| 49 | + <scope>test</scope> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.mockito</groupId> |
| 53 | + <artifactId>mockito-all</artifactId> |
| 54 | + <version>1.10.19</version> |
| 55 | + <scope>test</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>com.google.appengine</groupId> |
| 59 | + <artifactId>appengine-testing</artifactId> |
| 60 | + <version>${appengine.target.version}</version> |
| 61 | + <scope>test</scope> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>com.google.appengine</groupId> |
| 65 | + <artifactId>appengine-api-stubs</artifactId> |
| 66 | + <version>${appengine.target.version}</version> |
| 67 | + <scope>test</scope> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>com.google.appengine</groupId> |
| 71 | + <artifactId>appengine-tools-sdk</artifactId> |
| 72 | + <version>${appengine.target.version}</version> |
| 73 | + <scope>test</scope> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>com.google.truth</groupId> |
| 77 | + <artifactId>truth</artifactId> |
| 78 | + <version>0.27</version> |
| 79 | + <scope>test</scope> |
| 80 | + </dependency> |
| 81 | + </dependencies> |
| 82 | + <build> |
| 83 | + <!-- for hot reload of the web application --> |
| 84 | + <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory> |
| 85 | + <plugins> |
| 86 | + <plugin> |
| 87 | + <groupId>org.apache.maven.plugins</groupId> |
| 88 | + <version>3.3</version> |
| 89 | + <artifactId>maven-compiler-plugin</artifactId> |
| 90 | + <configuration> |
| 91 | + <source>1.7</source> |
| 92 | + <target>1.7</target> |
| 93 | + </configuration> |
| 94 | + </plugin> |
| 95 | + <plugin> |
| 96 | + <groupId>com.google.appengine</groupId> |
| 97 | + <artifactId>gcloud-maven-plugin</artifactId> |
| 98 | + <version>2.0.9.90.v20151210</version> |
| 99 | + </plugin> |
| 100 | + </plugins> |
| 101 | + </build> |
| 102 | +</project> |
0 commit comments