|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Copyright 2017 Google Inc. |
| 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 | +<!-- [START pom] --> |
| 18 | +<project> |
| 19 | + <modelVersion>4.0.0</modelVersion> |
| 20 | + <packaging>jar</packaging> |
| 21 | + <groupId>com.example</groupId> |
| 22 | + <artifactId>iap-samples</artifactId> |
| 23 | + <version>1.0-SNAPSHOT</version> |
| 24 | + |
| 25 | + <properties> |
| 26 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 27 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 28 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 29 | + </properties> |
| 30 | + |
| 31 | + <dependencyManagement> |
| 32 | + <dependencies> |
| 33 | + <dependency> |
| 34 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 35 | + <artifactId>jackson-core</artifactId> |
| 36 | + <version>2.8.6</version> |
| 37 | + </dependency> |
| 38 | + </dependencies> |
| 39 | + </dependencyManagement> |
| 40 | + |
| 41 | + <dependencies> |
| 42 | + <dependency> <!-- REQUIRED --> |
| 43 | + <groupId>javax.servlet</groupId> <!-- Java Servlet API --> |
| 44 | + <artifactId>javax.servlet-api</artifactId> |
| 45 | + <version>3.1.0</version> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <!-- [START dependencies] --> |
| 49 | + <dependency> |
| 50 | + <groupId>com.google.auth</groupId> |
| 51 | + <artifactId>google-auth-library-oauth2-http</artifactId> |
| 52 | + <version>0.6.0</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>com.auth0</groupId> |
| 56 | + <artifactId>java-jwt</artifactId> |
| 57 | + <version>3.2.0</version> |
| 58 | + </dependency> |
| 59 | + <!-- [END dependencies] --> |
| 60 | + |
| 61 | + <!-- Test dependencies --> |
| 62 | + <dependency> |
| 63 | + <groupId>junit</groupId> |
| 64 | + <artifactId>junit</artifactId> |
| 65 | + <version>4.12</version> |
| 66 | + </dependency> |
| 67 | + </dependencies> |
| 68 | +</project> |
| 69 | +<!-- [END pom] --> |
0 commit comments