Skip to content

Commit c4c828b

Browse files
committed
Merge branch 'junit-version-upgrade' into 'main'
dependabot JUnit version update See merge request weblogic-cloud/weblogic-deploy-tooling!1489
2 parents 01812c5 + bb4b350 commit c4c828b

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

pom.xml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
Copyright (c) 2017, 2023, Oracle and/or its affiliates.
4-
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
4+
Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
55
-->
66
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
77
<modelVersion>4.0.0</modelVersion>
@@ -40,6 +40,7 @@
4040
<antlr.version>4.9.3</antlr.version>
4141
<snakeyaml.version>2.0</snakeyaml.version>
4242
<picocli.version>4.7.4</picocli.version>
43+
<junit.version>5.10.0</junit.version>
4344
<wdt.scm.repo.url>${env.WDT_SCM_REPO_URL}</wdt.scm.repo.url>
4445
<wdt.scm.repo.conn>${env.WDT_SCM_REPO_CONN}</wdt.scm.repo.conn>
4546

@@ -88,7 +89,12 @@
8889
<dependency>
8990
<groupId>org.junit.jupiter</groupId>
9091
<artifactId>junit-jupiter-engine</artifactId>
91-
<version>5.9.3</version>
92+
<version>${junit.version}</version>
93+
</dependency>
94+
<dependency>
95+
<groupId>org.junit.jupiter</groupId>
96+
<artifactId>junit-jupiter-params</artifactId>
97+
<version>${junit.version}</version>
9298
</dependency>
9399
<dependency>
94100
<groupId>org.easymock</groupId>
@@ -115,11 +121,6 @@
115121
<artifactId>picocli</artifactId>
116122
<version>${picocli.version}</version>
117123
</dependency>
118-
<dependency>
119-
<groupId>org.junit.jupiter</groupId>
120-
<artifactId>junit-jupiter-params</artifactId>
121-
<version>5.9.3</version>
122-
</dependency>
123124
</dependencies>
124125
</dependencyManagement>
125126

0 commit comments

Comments
 (0)