This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch 3.3
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/3.3 by this push:
new d5873cb43d Bump junit_jupiter_version from 5.9.3 to 5.11.2 (#14747)
d5873cb43d is described below
commit d5873cb43d0850abc568d72f4ffd9d0f2d56526f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Oct 11 12:26:06 2024 +0800
Bump junit_jupiter_version from 5.9.3 to 5.11.2 (#14747)
* Bump junit_jupiter_version from 5.9.3 to 5.11.2
Bumps `junit_jupiter_version` from 5.9.3 to 5.11.2.
Updates `org.junit.jupiter:junit-jupiter-engine` from 5.9.3 to 5.11.2
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/compare/r5.9.3...r5.11.2)
Updates `org.junit.jupiter:junit-jupiter-params` from 5.9.3 to 5.11.2
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/compare/r5.9.3...r5.11.2)
Updates `org.junit.jupiter:junit-jupiter-api` from 5.9.3 to 5.11.2
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/compare/r5.9.3...r5.11.2)
Updates `org.junit.vintage:junit-vintage-engine` from 5.9.3 to 5.11.2
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/compare/r5.9.3...r5.11.2)
---
updated-dependencies:
- dependency-name: org.junit.jupiter:junit-jupiter-engine
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: org.junit.jupiter:junit-jupiter-params
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: org.junit.jupiter:junit-jupiter-api
dependency-type: direct:development
update-type: version-update:semver-minor
- dependency-name: org.junit.vintage:junit-vintage-engine
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
* Fix junit test failed
* Unify junit version
* Unify junit version
* Fix scope
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Albumen Kevin <[email protected]>
---
dubbo-dependencies-bom/pom.xml | 15 ++++++++++++++-
dubbo-test/dubbo-test-check/pom.xml | 8 ++++++--
2 files changed, 20 insertions(+), 3 deletions(-)
diff --git a/dubbo-dependencies-bom/pom.xml b/dubbo-dependencies-bom/pom.xml
index 5ef10ca80c..5001ec71b9 100644
--- a/dubbo-dependencies-bom/pom.xml
+++ b/dubbo-dependencies-bom/pom.xml
@@ -154,7 +154,8 @@
<groovy_version>4.0.23</groovy_version>
<!-- Test libs -->
- <junit_jupiter_version>5.9.3</junit_jupiter_version>
+ <junit_jupiter_version>5.11.2</junit_jupiter_version>
+ <junit_platform_version>1.11.2</junit_platform_version>
<junit_version>4.13.2</junit_version>
<awaitility_version>4.2.2</awaitility_version>
<hamcrest_version>2.2</hamcrest_version>
@@ -682,6 +683,18 @@
<version>${junit_jupiter_version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.junit.platform</groupId>
+ <artifactId>junit-platform-engine</artifactId>
+ <version>${junit_platform_version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.platform</groupId>
+ <artifactId>junit-platform-launcher</artifactId>
+ <version>${junit_platform_version}</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
diff --git a/dubbo-test/dubbo-test-check/pom.xml
b/dubbo-test/dubbo-test-check/pom.xml
index a0172f8e19..19cf284369 100644
--- a/dubbo-test/dubbo-test-check/pom.xml
+++ b/dubbo-test/dubbo-test-check/pom.xml
@@ -32,7 +32,6 @@
<zookeeper.version>3.7.2</zookeeper.version>
<curator5.version>4.2.0</curator5.version>
<commons.compress.version>1.27.1</commons.compress.version>
- <junit.platform.launcher.version>1.9.3</junit.platform.launcher.version>
<commons.exec.version>1.4.0</commons.exec.version>
<async.http.client.version>2.12.3</async.http.client.version>
</properties>
@@ -46,7 +45,12 @@
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
- <version>${junit.platform.launcher.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.platform</groupId>
+ <artifactId>junit-platform-engine</artifactId>
+ <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>