|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <packaging>war</packaging> |
| 5 | + <version>1.0-SNAPSHOT</version> |
| 6 | + |
| 7 | + <groupId>com.example.datastore</groupId> |
| 8 | + <artifactId>schedule-export</artifactId> |
| 9 | + |
| 10 | + <parent> |
| 11 | + <groupId>com.google.cloud.samples</groupId> |
| 12 | + <artifactId>shared-configuration</artifactId> |
| 13 | + <version>1.0.10</version> |
| 14 | + </parent> |
| 15 | + |
| 16 | + <properties> |
| 17 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 18 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 19 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 20 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 21 | + <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation> |
| 22 | + <archiveClasses>true</archiveClasses> |
| 23 | + </properties> |
| 24 | + |
| 25 | + <prerequisites> |
| 26 | + <maven>3.5</maven> |
| 27 | + </prerequisites> |
| 28 | + |
| 29 | + <dependencies> |
| 30 | + <!-- Compile/runtime dependencies --> |
| 31 | + <dependency> |
| 32 | + <groupId>com.google.appengine</groupId> |
| 33 | + <artifactId>appengine-api-1.0-sdk</artifactId> |
| 34 | + <version>1.9.59</version> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>com.google.guava</groupId> |
| 38 | + <artifactId>guava</artifactId> |
| 39 | + <version>25.1-android</version> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>javax.servlet</groupId> |
| 43 | + <artifactId>javax.servlet-api</artifactId> |
| 44 | + <version>3.1.0</version> |
| 45 | + <type>jar</type> |
| 46 | + <scope>provided</scope> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>org.json</groupId> |
| 50 | + <artifactId>json</artifactId> |
| 51 | + <version>20180130</version> |
| 52 | + </dependency> |
| 53 | + |
| 54 | + <!-- Test Dependencies --> |
| 55 | + <dependency> |
| 56 | + <groupId>com.google.appengine</groupId> |
| 57 | + <artifactId>appengine-testing</artifactId> |
| 58 | + <version>1.9.59</version> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>com.google.truth</groupId> |
| 63 | + <artifactId>truth</artifactId> |
| 64 | + <version>0.33</version> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>junit</groupId> |
| 69 | + <artifactId>junit</artifactId> |
| 70 | + <version>4.12</version> |
| 71 | + <scope>test</scope> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>org.mockito</groupId> |
| 75 | + <artifactId>mockito-all</artifactId> |
| 76 | + <version>2.0.2-beta</version> |
| 77 | + <scope>test</scope> |
| 78 | + </dependency> |
| 79 | + </dependencies> |
| 80 | + |
| 81 | + <build> |
| 82 | + <!-- for hot reload of the web application--> |
| 83 | + <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory> |
| 84 | + <plugins> |
| 85 | + <plugin> |
| 86 | + <groupId>com.google.cloud.tools</groupId> |
| 87 | + <artifactId>appengine-maven-plugin</artifactId> |
| 88 | + <version>1.3.2</version> |
| 89 | + <configuration> |
| 90 | + </configuration> |
| 91 | + </plugin> |
| 92 | + </plugins> |
| 93 | + </build> |
| 94 | +</project> |
0 commit comments