1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+
3+ <!--
4+ Copyright 2020 Google LLC
5+
6+ Licensed under the Apache License, Version 2.0 (the "License");
7+ you may not use this file except in compliance with the License.
8+ You may obtain a copy of the License at
9+
10+ http://www.apache.org/licenses/LICENSE-2.0
11+
12+ Unless required by applicable law or agreed to in writing, software
13+ distributed under the License is distributed on an "AS IS" BASIS,
14+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+ See the License for the specific language governing permissions and
16+ limitations under the License.
17+ -->
18+
19+ <project xmlns =" http://maven.apache.org/POM/4.0.0" 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.memorystore</groupId >
24+ <artifactId >caching</artifactId >
25+ <version >1.0-SNAPSHOT</version >
26+
27+ <name >Google Cloud Memorystore Sample</name >
28+ <url >http://www.example.com</url >
29+
30+ <properties >
31+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
32+ <maven .compiler.release>11</maven .compiler.release>
33+ </properties >
34+
35+ <dependencyManagement >
36+ <dependencies >
37+ <dependency >
38+ <groupId >org.junit</groupId >
39+ <artifactId >junit-bom</artifactId >
40+ <version >5.11.0</version >
41+ <type >pom</type >
42+ <scope >import</scope >
43+ </dependency >
44+ </dependencies >
45+ </dependencyManagement >
46+
47+ <dependencies >
48+ <!-- Jedis Redis client library -->
49+ <dependency >
50+ <groupId >redis.clients</groupId >
51+ <artifactId >jedis</artifactId >
52+ <version >4.3.1</version >
53+ </dependency >
54+
55+ <!-- Google Cloud Client Libraries -->
56+ <dependency >
57+ <groupId >com.google.cloud</groupId >
58+ <artifactId >google-cloud-core</artifactId >
59+ <version >2.16.0</version >
60+ </dependency >
61+
62+ <!-- Unit testing libraries -->
63+ <dependency >
64+ <groupId >org.junit.jupiter</groupId >
65+ <artifactId >junit-jupiter-api</artifactId >
66+ <scope >test</scope >
67+ </dependency >
68+ <dependency >
69+ <groupId >org.junit.jupiter</groupId >
70+ <artifactId >junit-jupiter-params</artifactId >
71+ <scope >test</scope >
72+ </dependency >
73+ </dependencies >
74+
75+ <build >
76+ <pluginManagement >
77+ <plugins >
78+ <plugin >
79+ <artifactId >maven-clean-plugin</artifactId >
80+ <version >3.4.0</version >
81+ </plugin >
82+ <plugin >
83+ <artifactId >maven-resources-plugin</artifactId >
84+ <version >3.3.1</version >
85+ </plugin >
86+ <plugin >
87+ <artifactId >maven-compiler-plugin</artifactId >
88+ <version >3.13.0</version >
89+ </plugin >
90+ <plugin >
91+ <artifactId >maven-surefire-plugin</artifactId >
92+ <version >3.3.0</version >
93+ </plugin >
94+ <plugin >
95+ <artifactId >maven-jar-plugin</artifactId >
96+ <version >3.4.2</version >
97+ </plugin >
98+ <plugin >
99+ <artifactId >maven-install-plugin</artifactId >
100+ <version >3.1.2</version >
101+ </plugin >
102+ <plugin >
103+ <artifactId >maven-deploy-plugin</artifactId >
104+ <version >3.1.2</version >
105+ </plugin >
106+ <plugin >
107+ <artifactId >maven-site-plugin</artifactId >
108+ <version >3.12.1</version >
109+ </plugin >
110+ <plugin >
111+ <artifactId >maven-project-info-reports-plugin</artifactId >
112+ <version >3.6.1</version >
113+ </plugin >
114+ </plugins >
115+ </pluginManagement >
116+ </build >
117+ </project >
0 commit comments