|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Copyright (c) 2015 Google Inc. |
| 4 | + ~ |
| 5 | + ~ Licensed under the Apache License, Version 2.0 (the "License"); you |
| 6 | + ~ may not use this file except in compliance with the License. You may |
| 7 | + ~ 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 |
| 14 | + ~ implied. See the License for the specific language governing |
| 15 | + ~ permissions and limitations under the License. |
| 16 | + --> |
| 17 | + |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + |
| 23 | + <groupId>com.example.storagetransfer</groupId> |
| 24 | + <artifactId>storage-transfer-sample</artifactId> |
| 25 | + <version>0.1</version> |
| 26 | + <packaging>jar</packaging> |
| 27 | + <!-- |
| 28 | + The parent pom defines common style checks and testing strategies for our samples. |
| 29 | + Removing or replacing it should not affect the execution of the samples in anyway. |
| 30 | + --> |
| 31 | + <parent> |
| 32 | + <groupId>com.google.cloud.samples</groupId> |
| 33 | + <artifactId>shared-configuration</artifactId> |
| 34 | + <version>1.2.0</version> |
| 35 | + </parent> |
| 36 | + |
| 37 | + <properties> |
| 38 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 39 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 40 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 41 | + </properties> |
| 42 | + |
| 43 | + <dependencyManagement> |
| 44 | + <dependencies> |
| 45 | + <dependency> |
| 46 | + <artifactId>libraries-bom</artifactId> |
| 47 | + <groupId>com.google.cloud</groupId> |
| 48 | + <scope>import</scope> |
| 49 | + <type>pom</type> |
| 50 | + <version>26.32.0</version> |
| 51 | + </dependency> |
| 52 | + </dependencies> |
| 53 | + </dependencyManagement> |
| 54 | + |
| 55 | + <dependencies> |
| 56 | + <dependency> |
| 57 | + <groupId>com.google.apis</groupId> |
| 58 | + <artifactId>google-api-services-storagetransfer</artifactId> |
| 59 | + <version>v1-rev20240126-2.0.0</version> |
| 60 | + <exclusions> |
| 61 | + <exclusion> <!-- exclude an old version of Guava --> |
| 62 | + <groupId>com.google.guava</groupId> |
| 63 | + <artifactId>guava-jdk5</artifactId> |
| 64 | + </exclusion> |
| 65 | + </exclusions> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>com.google.cloud</groupId> |
| 69 | + <artifactId>google-cloud-storage-transfer</artifactId> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>com.google.auth</groupId> |
| 73 | + <artifactId>google-auth-library-oauth2-http</artifactId> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>com.google.guava</groupId> |
| 77 | + <artifactId>guava</artifactId> |
| 78 | + </dependency> |
| 79 | + |
| 80 | + <!-- Test Dependencies --> |
| 81 | + <dependency> |
| 82 | + <groupId>com.google.truth</groupId> |
| 83 | + <artifactId>truth</artifactId> |
| 84 | + <version>1.4.0</version> |
| 85 | + <scope>test</scope> |
| 86 | + </dependency> |
| 87 | + |
| 88 | + <dependency> |
| 89 | + <groupId>junit</groupId> |
| 90 | + <artifactId>junit</artifactId> |
| 91 | + <version>4.13.2</version> |
| 92 | + <scope>test</scope> |
| 93 | + </dependency> |
| 94 | + |
| 95 | + <dependency> |
| 96 | + <groupId>org.mockito</groupId> |
| 97 | + <artifactId>mockito-core</artifactId> |
| 98 | + <version>5.10.0</version> |
| 99 | + <scope>test</scope> |
| 100 | + </dependency> |
| 101 | + |
| 102 | + <dependency> |
| 103 | + <groupId>com.google.cloud</groupId> |
| 104 | + <artifactId>google-cloud-storage</artifactId> |
| 105 | + <scope>test</scope> |
| 106 | + </dependency> |
| 107 | + |
| 108 | + <dependency> |
| 109 | + <groupId>com.google.cloud</groupId> |
| 110 | + <artifactId>google-cloud-pubsub</artifactId> |
| 111 | + <scope>test</scope> |
| 112 | + </dependency> |
| 113 | + |
| 114 | + <dependency> |
| 115 | + <groupId>com.amazonaws</groupId> |
| 116 | + <artifactId>aws-java-sdk-s3</artifactId> |
| 117 | + <version>1.12.657</version> |
| 118 | + <scope>test</scope> |
| 119 | + </dependency> |
| 120 | + |
| 121 | + <dependency> |
| 122 | + <groupId>com.amazonaws</groupId> |
| 123 | + <artifactId>aws-java-sdk-sqs</artifactId> |
| 124 | + <version>1.12.657</version> |
| 125 | + <scope>test</scope> |
| 126 | + </dependency> |
| 127 | + |
| 128 | + <dependency> |
| 129 | + <groupId>com.azure</groupId> |
| 130 | + <artifactId>azure-storage-blob</artifactId> |
| 131 | + <version>12.25.1</version> |
| 132 | + </dependency> |
| 133 | + |
| 134 | + <dependency> |
| 135 | + <artifactId>slf4j-api</artifactId> |
| 136 | + <groupId>org.slf4j</groupId> |
| 137 | + <version>2.0.12</version> |
| 138 | + </dependency> |
| 139 | + |
| 140 | + <dependency> |
| 141 | + <artifactId>slf4j-simple</artifactId> |
| 142 | + <groupId>org.slf4j</groupId> |
| 143 | + <version>2.0.12</version> |
| 144 | + </dependency> |
| 145 | + |
| 146 | + </dependencies> |
| 147 | +</project> |
0 commit comments