|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
2 |
| -<!-- |
3 |
| -~ Copyright (c) 2013 Google LLC |
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 |
| ---> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +~ Copyright (c) 2013 Google LLC |
| 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 | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
18 | 18 | <modelVersion>4.0.0</modelVersion>
|
19 | 19 | <groupId>com.example.java</groupId>
|
20 | 20 | <artifactId>helloworld-springboot</artifactId>
|
21 | 21 | <version>0.0.1-SNAPSHOT</version>
|
22 |
| - <name>helloworld-springboot</name> |
23 |
| - |
24 |
| - <!-- |
25 |
| - The parent pom defines common style checks and testing strategies for our samples. |
26 |
| - Removing or replacing it should not affect the execution of the samples in anyway. |
27 |
| - --> |
28 |
| - <parent> |
29 |
| - <groupId>com.google.cloud.samples</groupId> |
30 |
| - <artifactId>shared-configuration</artifactId> |
31 |
| - <version>1.2.0</version> |
32 |
| - </parent> |
| 22 | + <name>helloworld-springboot</name> |
| 23 | + |
| 24 | + <!-- |
| 25 | + The parent pom defines common style checks and testing strategies for our samples. |
| 26 | + Removing or replacing it should not affect the execution of the samples in anyway. |
| 27 | + --> |
| 28 | + <parent> |
| 29 | + <groupId>com.google.cloud.samples</groupId> |
| 30 | + <artifactId>shared-configuration</artifactId> |
| 31 | + <version>1.2.0</version> |
| 32 | + </parent> |
33 | 33 |
|
34 | 34 | <properties>
|
35 | 35 | <maven.compiler.source>1.8</maven.compiler.source>
|
36 | 36 | <maven.compiler.target>1.8</maven.compiler.target>
|
37 |
| - </properties> |
| 37 | + </properties> |
38 | 38 |
|
39 | 39 | <dependencies>
|
40 | 40 | <dependency>
|
41 | 41 | <groupId>org.springframework.boot</groupId>
|
42 |
| - <artifactId>spring-boot-starter-web</artifactId> |
43 |
| - <version>2.5.5</version> |
| 42 | + <artifactId>spring-boot-starter-web</artifactId> |
| 43 | + <version>2.5.8</version> |
44 | 44 | </dependency>
|
45 | 45 | <dependency>
|
46 | 46 | <groupId>org.springframework.boot</groupId>
|
47 |
| - <artifactId>spring-boot-starter-actuator</artifactId> |
48 |
| - <version>2.5.5</version> |
| 47 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 48 | + <version>2.5.8</version> |
49 | 49 | </dependency>
|
50 | 50 | <dependency>
|
51 | 51 | <groupId>org.springframework.boot</groupId>
|
52 |
| - <artifactId>spring-boot-starter-test</artifactId> |
53 |
| - <version>2.5.4</version> |
| 52 | + <artifactId>spring-boot-starter-test</artifactId> |
| 53 | + <version>2.5.8</version> |
54 | 54 | <scope>test</scope>
|
55 | 55 | <exclusions>
|
56 | 56 | <exclusion>
|
|
59 | 59 | </exclusion>
|
60 | 60 | </exclusions>
|
61 | 61 | </dependency>
|
62 |
| - </dependencies> |
| 62 | + </dependencies> |
63 | 63 |
|
64 | 64 | <build>
|
65 | 65 | <plugins>
|
66 | 66 | <plugin>
|
67 | 67 | <groupId>org.springframework.boot</groupId>
|
68 |
| - <artifactId>spring-boot-maven-plugin</artifactId> |
69 |
| - <version>2.5.5</version> |
| 68 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 69 | + <version>2.5.8</version> |
70 | 70 | <executions>
|
71 | 71 | <execution>
|
72 | 72 | <goals>
|
|
0 commit comments