Skip to content
This repository was archived by the owner on Jan 4, 2024. It is now read-only.

Commit c717042

Browse files
committed
fix(deps): Updating some dependencies for making the demo runnable (again)
Update Spring Boot, Java, and docker-compose-rule-junit4 versions in pom.xml. The Spring Boot parent version has been updated to 2.7.18. Along with that, the Java version has been updated to 17. This necessitates corresponding changes in Maven compiler source and target versions. Also updated docker-compose-rule-junit4 version to 1.9.0 for compatibility with the updated versions.
1 parent 5e4418d commit c717042

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
<parent>
1111
<groupId>org.springframework.boot</groupId>
1212
<artifactId>spring-boot-starter-parent</artifactId>
13-
<version>2.0.3.RELEASE</version>
13+
<version>2.7.18</version>
1414
</parent>
1515
<prerequisites>
1616
<maven>3.3.9</maven>
1717
</prerequisites>
1818
<properties>
19-
<java.version>1.8</java.version>
20-
<maven.compiler.source>1.8</maven.compiler.source>
21-
<maven.compiler.target>1.8</maven.compiler.target>
19+
<java.version>17</java.version>
20+
<maven.compiler.source>17</maven.compiler.source>
21+
<maven.compiler.target>17</maven.compiler.target>
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2424
<selenium.version>3.12.0</selenium.version>
2525
<webdrivermanager.version>2.2.2</webdrivermanager.version>
26-
<docker-compose-rule-junit4.version>0.33.0</docker-compose-rule-junit4.version>
26+
<docker-compose-rule-junit4.version>1.9.0</docker-compose-rule-junit4.version>
2727
<maven.checkstyle.plugin.version>3.0.0</maven.checkstyle.plugin.version>
2828
<puppycrawl-checkstyle.version>8.10.1</puppycrawl-checkstyle.version>
2929
</properties>

0 commit comments

Comments
 (0)