Skip to content

Commit 3b0979e

Browse files
committed
Merge branch 'dependency-updates' into 'main'
Updated 3rd party and 4th party dependencies See merge request weblogic-cloud/weblogic-image-tool!498
2 parents 0d4cd40 + 85d5f50 commit 3b0979e

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

pom.xml

+12-5
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3838
<maven.compiler.source>1.8</maven.compiler.source>
3939
<maven.compiler.target>1.8</maven.compiler.target>
40+
<maven.compiler.release>8</maven.compiler.release>
4041

4142
<test.groups>gate</test.groups>
4243
<skipITs>true</skipITs>
@@ -64,6 +65,12 @@
6465
<artifactId>httpmime</artifactId>
6566
<version>4.5.14</version>
6667
</dependency>
68+
<!-- Updated 4th party dependency commons-codec, used by Apache http -->
69+
<dependency>
70+
<groupId>commons-codec</groupId>
71+
<artifactId>commons-codec</artifactId>
72+
<version>1.18.0</version>
73+
</dependency>
6774
<dependency>
6875
<groupId>info.picocli</groupId>
6976
<artifactId>picocli</artifactId>
@@ -72,7 +79,7 @@
7279
<dependency>
7380
<groupId>org.junit.jupiter</groupId>
7481
<artifactId>junit-jupiter-engine</artifactId>
75-
<version>5.11.4</version>
82+
<version>5.12.1</version>
7683
<scope>test</scope>
7784
</dependency>
7885
<dependency>
@@ -89,7 +96,7 @@
8996
<dependency>
9097
<groupId>org.jetbrains</groupId>
9198
<artifactId>annotations</artifactId>
92-
<version>26.0.1</version>
99+
<version>26.0.2</version>
93100
</dependency>
94101
</dependencies>
95102
</dependencyManagement>
@@ -149,7 +156,7 @@
149156
<plugin>
150157
<groupId>org.apache.maven.plugins</groupId>
151158
<artifactId>maven-install-plugin</artifactId>
152-
<version>3.1.3</version>
159+
<version>3.1.4</version>
153160
</plugin>
154161
<plugin>
155162
<groupId>org.apache.maven.plugins</groupId>
@@ -242,7 +249,7 @@
242249
<dependency>
243250
<groupId>com.puppycrawl.tools</groupId>
244251
<artifactId>checkstyle</artifactId>
245-
<version>10.21.1</version>
252+
<version>10.22.0</version>
246253
</dependency>
247254
</dependencies>
248255
</plugin>
@@ -281,7 +288,7 @@
281288
<plugin>
282289
<groupId>org.sonarsource.scanner.maven</groupId>
283290
<artifactId>sonar-maven-plugin</artifactId>
284-
<version>5.0.0.4389</version>
291+
<version>5.1.0.4751</version>
285292
</plugin>
286293
<plugin>
287294
<groupId>org.apache.maven.plugins</groupId>

tests/pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
<groupId>org.apache.maven.plugins</groupId>
8585
<artifactId>maven-failsafe-plugin</artifactId>
8686
<configuration>
87-
<encoding>UTF-8</encoding>
8887
<failIfNoTests>false</failIfNoTests>
8988
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
9089
<systemPropertyVariables>

0 commit comments

Comments
 (0)