diff --git a/bom/application/pom.xml b/bom/application/pom.xml index 40a46979ea51a..bf25d7bf2c84e 100644 --- a/bom/application/pom.xml +++ b/bom/application/pom.xml @@ -129,7 +129,7 @@ 12.1.0.0 1.2.6 2.2 - 5.13.4 + 6.0.1 16.0.2 6.0.1 3.2.3 @@ -382,7 +382,7 @@ import - + org.junit junit-bom @@ -3515,57 +3515,57 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter ${project.version} io.quarkus - quarkus-junit5-config + quarkus-junit-jupiter-config ${project.version} io.quarkus - quarkus-test-security + quarkus-junit-jupiter-component ${project.version} io.quarkus - quarkus-test-security-jwt + quarkus-junit-jupiter-internal ${project.version} io.quarkus - quarkus-test-security-oidc + quarkus-junit-jupiter-mockito ${project.version} io.quarkus - quarkus-test-security-webauthn + quarkus-junit-jupiter-mockito-config ${project.version} io.quarkus - quarkus-junit5-component + quarkus-test-common ${project.version} io.quarkus - quarkus-junit5-internal + quarkus-test-security ${project.version} io.quarkus - quarkus-test-common + quarkus-test-security-jwt ${project.version} io.quarkus - quarkus-junit5-mockito + quarkus-test-security-oidc ${project.version} io.quarkus - quarkus-junit5-mockito-config + quarkus-test-security-webauthn ${project.version} @@ -6604,6 +6604,37 @@ quarkus-vertx-http-dev-ui-spi ${project.version} + + + io.quarkus + quarkus-junit5 + ${project.version} + + + io.quarkus + quarkus-junit5-config + ${project.version} + + + io.quarkus + quarkus-junit5-component + ${project.version} + + + io.quarkus + quarkus-junit5-internal + ${project.version} + + + io.quarkus + quarkus-junit5-mockito + ${project.version} + + + io.quarkus + quarkus-junit5-mockito-config + ${project.version} + diff --git a/build-parent/pom.xml b/build-parent/pom.xml index a893c01246b2b..d3ad065e1dece 100644 --- a/build-parent/pom.xml +++ b/build-parent/pom.xml @@ -82,7 +82,7 @@ 3.1.0 docker.io/opensearchproject/opensearch:${opensearch-server.version} http - 2.2.0 + 2.3.0 docker.io/library/postgres:17 diff --git a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/JunitTestRunner.java b/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/JunitTestRunner.java index 19d2e7b098df2..f292bef96744e 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/JunitTestRunner.java +++ b/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/JunitTestRunner.java @@ -781,7 +781,7 @@ private DiscoveryResult discoverTestClasses() { // This is fine, and usually just means that test-framework/junit5 isn't one of the project dependencies // In that case, fallback to loading classes as we normally would, using a TCCL log.debug( - "Could not load class for FacadeClassLoader. This might be because quarkus-junit5 is not on the project classpath: " + "Could not load class for FacadeClassLoader. This might be because quarkus-junit-jupiter is not on the project classpath: " + e); log.debug(e); classLoaderForLoadingTests = Thread.currentThread() diff --git a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConfig.java b/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConfig.java index 6c54654de8bc3..39324fea0a781 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConfig.java +++ b/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConfig.java @@ -46,7 +46,7 @@ public interface TestConfig { * The FQCN of the JUnit ClassOrderer to use. If the class cannot be found, it fallbacks to JUnit * default behaviour which does not set a ClassOrderer at all. * - * @see JUnit Class + * @see JUnit Class * Order */ @WithDefault("io.quarkus.test.junit.util.QuarkusTestProfileAwareClassOrderer") @@ -55,7 +55,7 @@ public interface TestConfig { /** * Tags that should be included for continuous testing. This supports JUnit Tag Expressions. * - * @see JUnit Tag Expressions + * @see JUnit Tag Expressions */ Optional> includeTags(); @@ -68,7 +68,7 @@ public interface TestConfig { *

* This supports JUnit Tag Expressions. * - * @see JUnit Tag Expressions + * @see JUnit Tag Expressions */ @WithDefault("slow") Optional> excludeTags(); diff --git a/core/runtime/pom.xml b/core/runtime/pom.xml index 795a73b5d9dc2..8199cdeec924c 100644 --- a/core/runtime/pom.xml +++ b/core/runtime/pom.xml @@ -206,7 +206,7 @@ io.quarkus:quarkus-class-change-agent org.jacoco:org.jacoco.agent:runtime io.quarkus:quarkus-bootstrap-gradle-resolver - io.quarkus:quarkus-junit5-mockito-config + io.quarkus:quarkus-junit-jupiter-mockito-config diff --git a/devtools/gradle/gradle/libs.versions.toml b/devtools/gradle/gradle/libs.versions.toml index 3f0bdc544bf32..90786187fe848 100644 --- a/devtools/gradle/gradle/libs.versions.toml +++ b/devtools/gradle/gradle/libs.versions.toml @@ -4,7 +4,7 @@ plugin-publish = "2.0.0" kotlin = "2.2.21" smallrye-config = "3.14.1" -junit5 = "5.13.4" +junit5 = "6.0.1" assertj = "3.27.6" [plugins] diff --git a/docs/pom.xml b/docs/pom.xml index 1e04a2e1858ef..edeae87e667af 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -100,7 +100,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/docs/src/main/asciidoc/aws-lambda.adoc b/docs/src/main/asciidoc/aws-lambda.adoc index 7fe1087152132..c2bf763f157e6 100644 --- a/docs/src/main/asciidoc/aws-lambda.adoc +++ b/docs/src/main/asciidoc/aws-lambda.adoc @@ -293,7 +293,7 @@ dependencies { implementation 'io.quarkus:quarkus-resteasy' implementation 'io.quarkus:quarkus-amazon-lambda' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } ---- diff --git a/docs/src/main/asciidoc/building-my-first-extension.adoc b/docs/src/main/asciidoc/building-my-first-extension.adoc index 6de3b80f1276e..cf0ba2b1115c9 100644 --- a/docs/src/main/asciidoc/building-my-first-extension.adoc +++ b/docs/src/main/asciidoc/building-my-first-extension.adoc @@ -263,7 +263,7 @@ Let's have a look at the deployment's `./greeting-extension/deployment/pom.xml`. io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test @@ -460,7 +460,7 @@ dependencies { implementation platform("io.quarkus:quarkus-bom:${quarkus.version}") - testImplementation 'io.quarkus:quarkus-junit5-internal' + testImplementation 'io.quarkus:quarkus-junit-jupiter-internal' } ---- @@ -666,7 +666,7 @@ Now, Quarkus will process this new task which will result in the bytecode genera When developing a Quarkus extension, you mainly want to test your feature is properly deployed in an application and works as expected. That's why the tests will be hosted in the `deployment` module. -Quarkus proposes facilities to test extensions via the `quarkus-junit5-internal` artifact (which should already be in the deployment pom.xml), in particular the `io.quarkus.test.QuarkusUnitTest` runner which starts an application with your extension. +Quarkus proposes facilities to test extensions via the `quarkus-junit-jupiter-internal` artifact (which should already be in the deployment pom.xml), in particular the `io.quarkus.test.QuarkusUnitTest` runner which starts an application with your extension. We will use https://rest-assured.io[RestAssured] (massively used in Quarkus) to test our HTTP endpoint. Let's add the `rest-assured` dependency into the `./greeting-extension/deployment/pom.xml`. diff --git a/docs/src/main/asciidoc/doc-contribute-docs-howto.adoc b/docs/src/main/asciidoc/doc-contribute-docs-howto.adoc index 9500f2b1b02ee..35bab5a6738e7 100644 --- a/docs/src/main/asciidoc/doc-contribute-docs-howto.adoc +++ b/docs/src/main/asciidoc/doc-contribute-docs-howto.adoc @@ -269,7 +269,7 @@ Our builds use https://vale.sh[Vale] to check grammar, style, and word usage in This approach requires a working container runtime (Docker or xref:podman.adoc[Podman]). -The `docs` module has a JUnit 5 test that will run the Vale linter in a container (using https://www.testcontainers.org/[Testcontainers]). +The `docs` module has a JUnit Jupiter test that will run the Vale linter in a container (using https://www.testcontainers.org/[Testcontainers]). It verifies both Quarkus document metadata and Vale style rules. Run the test in one of the following ways: diff --git a/docs/src/main/asciidoc/getting-started-testing.adoc b/docs/src/main/asciidoc/getting-started-testing.adoc index 4e4afb794353e..93cd4802835e3 100644 --- a/docs/src/main/asciidoc/getting-started-testing.adoc +++ b/docs/src/main/asciidoc/getting-started-testing.adoc @@ -57,7 +57,7 @@ In your build file you should see 2 test dependencies: ---- io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -73,18 +73,18 @@ In your build file you should see 2 test dependencies: [source,groovy,subs=attributes+] ---- dependencies { - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } ---- **** -`quarkus-junit5` is required for testing, as it provides the `@QuarkusTest` annotation that controls the testing framework. +`quarkus-junit-jupiter` is required for testing, as it provides the `@QuarkusTest` annotation that controls the testing framework. `rest-assured` is not required but is a convenient way to test HTTP endpoints, we also provide integration that automatically sets the correct URL so no configuration is required. -Because we are using JUnit 5, the version of the https://maven.apache.org/surefire/maven-surefire-plugin/[Surefire Maven Plugin] -must be set, as the default version does not support Junit 5: +Because we are using JUnit Jupiter, the version of the https://maven.apache.org/surefire/maven-surefire-plugin/[Surefire Maven Plugin] +must be set, as the default version does not support JUnit Jupiter: [source,xml,subs=attributes+] ---- @@ -470,11 +470,11 @@ a bit slower, as it adds a shutdown/startup cycle to the test time, but gives a To reduce the amount of times Quarkus needs to restart, `io.quarkus.test.junit.util.QuarkusTestProfileAwareClassOrderer` is registered as a global `ClassOrderer` as described in the -link:https://junit.org/junit5/docs/current/user-guide/#writing-tests-test-execution-order-classes[JUnit 5 User Guide]. +link:https://docs.junit.org/current/user-guide/#writing-tests-test-execution-order-classes[JUnit Jupiter User Guide]. The behavior of this `ClassOrderer` is configurable via `application.properties` using the property `quarkus.test.class-orderer`. The property accepts the FQCN of the `ClassOrderer` to use. If the class cannot be found, it fallbacks to JUnit default behaviour which does not set a `ClassOrderer` at all. It can also be disabled entirely by -setting another `ClassOrderer` that is provided by JUnit 5 or even your own custom one. +setting another `ClassOrderer` that is provided by JUnit Jupiter or even your own custom one. === Writing a Profile @@ -704,7 +704,7 @@ matches the value of `quarkus.test.profile.tags`. == Nested Tests -JUnit 5 https://junit.org/junit5/docs/current/user-guide/#writing-tests-nested[@Nested tests] are useful for structuring more complex test scenarios. +JUnit Jupiter https://docs.junit.org/current/user-guide/#writing-tests-nested[@Nested tests] are useful for structuring more complex test scenarios. However, note that it is not possible to assign different test profiles or resources to nested tests within the same parent class. == Mock Support @@ -836,12 +836,12 @@ Building on the features provided by `QuarkusMock`, Quarkus also allows users to [IMPORTANT] ==== -This functionality is available with the `@io.quarkus.test.InjectMock` annotation **only if** the `quarkus-junit5-mockito` dependency is present: +This functionality is available with the `@io.quarkus.test.InjectMock` annotation **only if** the `quarkus-junit-jupiter-mockito` dependency is present: [source,xml] ---- io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test ---- @@ -958,7 +958,7 @@ This is considered an advanced option and should only be performed if you fully ==== Using Spies instead of Mocks with `@InjectSpy` Building on the features provided by `InjectMock`, Quarkus also allows users to effortlessly take advantage of link:https://site.mockito.org/[Mockito] for spying on the beans supported by `QuarkusMock`. -This functionality is available via the `@io.quarkus.test.junit.mockito.InjectSpy` annotation which is available in the `quarkus-junit5-mockito` dependency. +This functionality is available via the `@io.quarkus.test.junit.mockito.InjectSpy` annotation which is available in the `quarkus-junit-jupiter-mockito` dependency. Sometimes when testing you only need to verify that a certain logical path was taken, or you only need to stub out a single method's response while still executing the rest of the methods on the Spied clone. Please see link:https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mockito.html#13[Mockito documentation - Spying on real objects] for more details on Spy partial mocks. In either of those situations a Spy of the object is preferable. @@ -1484,7 +1484,7 @@ while the latter three can coexist. The reason of this restriction is that `@QuarkusTest` starts a Quarkus server for the whole lifetime of the tests execution run, thus preventing the other tests to start their own Quarkus server. -To alleviate this restriction, the `@QuarkusTest` annotation defines a JUnit 5 `@Tag`: `io.quarkus.test.junit.QuarkusTest`. +To alleviate this restriction, the `@QuarkusTest` annotation defines a JUnit Jupiter `@Tag`: `io.quarkus.test.junit.QuarkusTest`. You can use this tag to isolate the `@QuarkusTest` test in a specific execution run, for example with the Maven Surefire Plugin: [source,xml] @@ -1699,7 +1699,7 @@ public @interface QuarkusSecurityTest { <1> == Testing Components Quarkus provides the `QuarkusComponentTestExtension`, a JUnit extension to ease the testing of components and mocking of their dependencies. -This JUnit extension is available in the `quarkus-junit5-component` dependency. +This JUnit extension is available in the `quarkus-junit-jupiter-component` dependency. Let's have a component `Foo` - a CDI bean with two injection points. diff --git a/docs/src/main/asciidoc/getting-started.adoc b/docs/src/main/asciidoc/getting-started.adoc index f2872b665b9ae..2dbf4016ef9c8 100644 --- a/docs/src/main/asciidoc/getting-started.adoc +++ b/docs/src/main/asciidoc/getting-started.adoc @@ -313,7 +313,7 @@ In the generated build file, you can see 2 test dependencies: ---- io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -326,13 +326,13 @@ In the generated build file, you can see 2 test dependencies: [source,gradle,role="secondary asciidoc-tabs-target-sync-gradle"] .build.gradle ---- -testImplementation("io.quarkus:quarkus-junit5") +testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") ---- -Quarkus supports https://junit.org/junit5/[JUnit 5] tests. +Quarkus supports https://docs.junit.org/current/user-guide/[JUnit Jupiter] tests. -Because of this, in the case of Maven, the version of the https://maven.apache.org/surefire/maven-surefire-plugin/[Surefire Maven Plugin] must be set, as the default version does not support JUnit 5: +Because of this, in the case of Maven, the version of the https://maven.apache.org/surefire/maven-surefire-plugin/[Surefire Maven Plugin] must be set, as the default version does not support JUnit Jupiter: [source,xml,subs=attributes+] ---- diff --git a/docs/src/main/asciidoc/hibernate-orm-panache.adoc b/docs/src/main/asciidoc/hibernate-orm-panache.adoc index 97035cde249f2..e5721e2f65a00 100644 --- a/docs/src/main/asciidoc/hibernate-orm-panache.adoc +++ b/docs/src/main/asciidoc/hibernate-orm-panache.adoc @@ -1327,14 +1327,14 @@ public class PanacheMockingTest { === Using the repository pattern -If you are using the repository pattern you can use Mockito directly, using the `quarkus-junit5-mockito` module, +If you are using the repository pattern you can use Mockito directly, using the `quarkus-junit-jupiter-mockito` module, which makes mocking beans much easier: [source,xml] ---- io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test ---- diff --git a/docs/src/main/asciidoc/hibernate-reactive-panache.adoc b/docs/src/main/asciidoc/hibernate-reactive-panache.adoc index 268ca64a09605..dca0bf8679746 100644 --- a/docs/src/main/asciidoc/hibernate-reactive-panache.adoc +++ b/docs/src/main/asciidoc/hibernate-reactive-panache.adoc @@ -1060,7 +1060,7 @@ what mock object to pass. === Using the repository pattern -If you are using the repository pattern you can use Mockito directly, using the `quarkus-junit5-mockito` module, +If you are using the repository pattern you can use Mockito directly, using the `quarkus-junit-jupiter-mockito` module, which makes mocking beans much easier: [source,xml,role="primary asciidoc-tabs-target-sync-cli asciidoc-tabs-target-sync-maven"] @@ -1068,7 +1068,7 @@ which makes mocking beans much easier: ---- io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test ---- @@ -1076,7 +1076,7 @@ which makes mocking beans much easier: [source,gradle,role="secondary asciidoc-tabs-target-sync-gradle"] .build.gradle ---- -testImplementation("io.quarkus:quarkus-junit5-mockito") +testImplementation("io.quarkus:quarkus-junit-jupiter-mockito") ---- Given this simple entity: diff --git a/docs/src/main/asciidoc/jreleaser.adoc b/docs/src/main/asciidoc/jreleaser.adoc index 49b328ec3bb93..0c1e89451ea65 100644 --- a/docs/src/main/asciidoc/jreleaser.adoc +++ b/docs/src/main/asciidoc/jreleaser.adoc @@ -668,7 +668,7 @@ As a reference, these are the full contents of the `pom.xml`: io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/docs/src/main/asciidoc/kotlin.adoc b/docs/src/main/asciidoc/kotlin.adoc index 651cd0e63a592..d9607713f6105 100644 --- a/docs/src/main/asciidoc/kotlin.adoc +++ b/docs/src/main/asciidoc/kotlin.adoc @@ -213,7 +213,7 @@ dependencies { implementation 'io.quarkus:quarkus-rest-jackson' implementation 'io.quarkus:quarkus-kotlin' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } @@ -282,7 +282,7 @@ dependencies { implementation("io.quarkus:quarkus-rest") implementation("io.quarkus:quarkus-rest-jackson") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/docs/src/main/asciidoc/mongodb-panache.adoc b/docs/src/main/asciidoc/mongodb-panache.adoc index eaa6790f9286a..d429899727560 100644 --- a/docs/src/main/asciidoc/mongodb-panache.adoc +++ b/docs/src/main/asciidoc/mongodb-panache.adoc @@ -1118,7 +1118,7 @@ what mock object to pass. === Using the repository pattern -If you are using the repository pattern you can use Mockito directly, using the `quarkus-junit5-mockito` module, +If you are using the repository pattern you can use Mockito directly, using the `quarkus-junit-jupiter-mockito` module, which makes mocking beans much easier: [source,xml,role="primary asciidoc-tabs-target-sync-cli asciidoc-tabs-target-sync-maven"] @@ -1126,7 +1126,7 @@ which makes mocking beans much easier: ---- io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test ---- @@ -1134,7 +1134,7 @@ which makes mocking beans much easier: [source,gradle,role="secondary asciidoc-tabs-target-sync-gradle"] .build.gradle ---- -testImplementation("io.quarkus:quarkus-junit5-mockito") +testImplementation("io.quarkus:quarkus-junit-jupiter-mockito") ---- Given this simple entity: diff --git a/docs/src/main/asciidoc/rest-client.adoc b/docs/src/main/asciidoc/rest-client.adoc index 8a3d95935d823..a85cfb33912c9 100644 --- a/docs/src/main/asciidoc/rest-client.adoc +++ b/docs/src/main/asciidoc/rest-client.adoc @@ -1977,7 +1977,7 @@ First, add the following dependency to your application: ---- io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test ---- @@ -1985,7 +1985,7 @@ First, add the following dependency to your application: [source,gradle,role="secondary asciidoc-tabs-target-sync-gradle"] .build.gradle ---- -testImplementation("io.quarkus:quarkus-junit5-mockito") +testImplementation("io.quarkus:quarkus-junit-jupiter-mockito") ---- Then, in your test you can simply use `@InjectMock` to create and inject a mock: diff --git a/docs/src/main/asciidoc/security-oidc-bearer-token-authentication.adoc b/docs/src/main/asciidoc/security-oidc-bearer-token-authentication.adoc index 3b1bb8a6fa484..e230a2fd34b5c 100644 --- a/docs/src/main/asciidoc/security-oidc-bearer-token-authentication.adoc +++ b/docs/src/main/asciidoc/security-oidc-bearer-token-authentication.adoc @@ -586,7 +586,7 @@ You can begin testing by adding the following dependencies to your test project: io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test ---- @@ -595,7 +595,7 @@ You can begin testing by adding the following dependencies to your test project: .build.gradle ---- testImplementation("io.rest-assured:rest-assured") -testImplementation("io.quarkus:quarkus-junit5") +testImplementation("io.quarkus:quarkus-junit-jupiter") ---- [[bearer-token-integration-testing-keycloak-devservices]] diff --git a/docs/src/main/asciidoc/security-oidc-code-flow-authentication.adoc b/docs/src/main/asciidoc/security-oidc-code-flow-authentication.adoc index d0b691650bd24..d7f1856c22912 100644 --- a/docs/src/main/asciidoc/security-oidc-code-flow-authentication.adoc +++ b/docs/src/main/asciidoc/security-oidc-code-flow-authentication.adoc @@ -2028,7 +2028,7 @@ Start by adding the following dependencies to your test project: io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test ---- @@ -2037,7 +2037,7 @@ Start by adding the following dependencies to your test project: .build.gradle ---- testImplementation("org.htmlunit:htmlunit") -testImplementation("io.quarkus:quarkus-junit5") +testImplementation("io.quarkus:quarkus-junit-jupiter") ---- [[code-flow-integration-testing-keycloak-devservices]] diff --git a/docs/src/main/asciidoc/security-openid-connect-client-reference.adoc b/docs/src/main/asciidoc/security-openid-connect-client-reference.adoc index fe0785d28482f..7a3eb8fb9e986 100644 --- a/docs/src/main/asciidoc/security-openid-connect-client-reference.adoc +++ b/docs/src/main/asciidoc/security-openid-connect-client-reference.adoc @@ -1139,7 +1139,7 @@ Start by adding the following dependencies to your test project: ---- io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/docs/src/main/asciidoc/testing-components.adoc b/docs/src/main/asciidoc/testing-components.adoc index 1d3f47f64bbd1..660e97ffb4faf 100644 --- a/docs/src/main/asciidoc/testing-components.adoc +++ b/docs/src/main/asciidoc/testing-components.adoc @@ -18,7 +18,7 @@ Therefore, Quarkus provides `QuarkusComponentTestExtension` - a JUnit extension Unlike `@QuarkusTest` this extension does not start a full Quarkus application but merely the CDI container and the configuration service. You can find more details in the <> section. -TIP: This JUnit extension is available in the `quarkus-junit5-component` dependency. +TIP: This JUnit extension is available in the `quarkus-junit-jupiter-component` dependency. == Basic example @@ -234,7 +234,7 @@ You can use the mock configurator API via the `QuarkusComponentTestExtensionBuil == Nested Tests -JUnit 5 https://junit.org/junit5/docs/current/user-guide/#writing-tests-nested[@Nested tests] may help to structure more complex test scenarios. +JUnit Jupiter https://docs.junit.org/current/user-guide/#writing-tests-nested[@Nested tests] may help to structure more complex test scenarios. However, only basic use cases are tested with `@QuarkusComponentTest`. .Nested test diff --git a/docs/src/main/asciidoc/tests-with-coverage.adoc b/docs/src/main/asciidoc/tests-with-coverage.adoc index d1bceb1b2b423..305c8932b69fd 100644 --- a/docs/src/main/asciidoc/tests-with-coverage.adoc +++ b/docs/src/main/asciidoc/tests-with-coverage.adoc @@ -31,7 +31,7 @@ include::{includes}/prerequisites.adoc[] == Architecture The application built in this guide is just a Jakarta REST endpoint (hello world) that relies on dependency injection to use a service. -The service will be tested with JUnit 5 and the endpoint will be annotated via a `@QuarkusTest` annotation. +The service will be tested with JUnit Jupiter and the endpoint will be annotated via a `@QuarkusTest` annotation. == Solution diff --git a/docs/src/main/asciidoc/writing-extensions.adoc b/docs/src/main/asciidoc/writing-extensions.adoc index f32229a424e51..7ad5271426956 100644 --- a/docs/src/main/asciidoc/writing-extensions.adoc +++ b/docs/src/main/asciidoc/writing-extensions.adoc @@ -2117,7 +2117,7 @@ See xref:extension-writing-dev-service.adoc[how to write a Dev Service] for more [[testing-extensions]] === Testing Extensions -Testing of Quarkus extensions should be done with the `io.quarkus.test.QuarkusUnitTest` JUnit 5 extension. +Testing of Quarkus extensions should be done with the `io.quarkus.test.QuarkusUnitTest` JUnit Jupiter extension. This extension allows for Arquillian-style tests that test specific functionalities. It is not intended for testing user applications, as this should be done via `io.quarkus.test.junit.QuarkusTest`. The main difference is that `QuarkusTest` simply boots the application once at the start of the run, while `QuarkusUnitTest` deploys a custom @@ -2126,7 +2126,7 @@ Quarkus application for each test class. These tests should be placed in the deployment module, if additional Quarkus modules are required for testing their deployment modules should also be added as test scoped dependencies. -Note that `QuarkusUnitTest` is in the `quarkus-junit5-internal` module. +Note that `QuarkusUnitTest` is in the `quarkus-junit-jupiter-internal` module. An example test class may look like: diff --git a/extensions/agroal/deployment/pom.xml b/extensions/agroal/deployment/pom.xml index ac448c706702e..4456f9adef859 100644 --- a/extensions/agroal/deployment/pom.xml +++ b/extensions/agroal/deployment/pom.xml @@ -76,7 +76,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/agroal/runtime/pom.xml b/extensions/agroal/runtime/pom.xml index 72a2be3bbbfc6..ddfaf784efc09 100644 --- a/extensions/agroal/runtime/pom.xml +++ b/extensions/agroal/runtime/pom.xml @@ -67,7 +67,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/agroal/spi/pom.xml b/extensions/agroal/spi/pom.xml index dc8fe8e1ef587..9019daa113d3e 100644 --- a/extensions/agroal/spi/pom.xml +++ b/extensions/agroal/spi/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/amazon-lambda-http/maven-archetype/src/main/resources/archetype-resources/pom.xml b/extensions/amazon-lambda-http/maven-archetype/src/main/resources/archetype-resources/pom.xml index 01c9ac4d48e4e..87f99d8feafab 100644 --- a/extensions/amazon-lambda-http/maven-archetype/src/main/resources/archetype-resources/pom.xml +++ b/extensions/amazon-lambda-http/maven-archetype/src/main/resources/archetype-resources/pom.xml @@ -58,7 +58,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/amazon-lambda-rest/maven-archetype/src/main/resources/archetype-resources/pom.xml b/extensions/amazon-lambda-rest/maven-archetype/src/main/resources/archetype-resources/pom.xml index 3b68486fa477b..8f16050171480 100644 --- a/extensions/amazon-lambda-rest/maven-archetype/src/main/resources/archetype-resources/pom.xml +++ b/extensions/amazon-lambda-rest/maven-archetype/src/main/resources/archetype-resources/pom.xml @@ -58,7 +58,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/amazon-lambda/common-deployment/pom.xml b/extensions/amazon-lambda/common-deployment/pom.xml index dba760ca81614..ad643cd71a39a 100644 --- a/extensions/amazon-lambda/common-deployment/pom.xml +++ b/extensions/amazon-lambda/common-deployment/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/amazon-lambda/deployment/pom.xml b/extensions/amazon-lambda/deployment/pom.xml index 2eb03cfce23ff..28b1b56a1d1a5 100644 --- a/extensions/amazon-lambda/deployment/pom.xml +++ b/extensions/amazon-lambda/deployment/pom.xml @@ -37,12 +37,12 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/amazon-lambda/maven-archetype/src/main/resources/archetype-resources/build.gradle b/extensions/amazon-lambda/maven-archetype/src/main/resources/archetype-resources/build.gradle index cf765452594dd..ca55f8271626a 100644 --- a/extensions/amazon-lambda/maven-archetype/src/main/resources/archetype-resources/build.gradle +++ b/extensions/amazon-lambda/maven-archetype/src/main/resources/archetype-resources/build.gradle @@ -12,7 +12,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-amazon-lambda' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/extensions/amazon-lambda/maven-archetype/src/main/resources/archetype-resources/pom.xml b/extensions/amazon-lambda/maven-archetype/src/main/resources/archetype-resources/pom.xml index e2814034fb0f4..5ebaf5279a7ec 100644 --- a/extensions/amazon-lambda/maven-archetype/src/main/resources/archetype-resources/pom.xml +++ b/extensions/amazon-lambda/maven-archetype/src/main/resources/archetype-resources/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/arc/deployment/pom.xml b/extensions/arc/deployment/pom.xml index 55c07286bfcfe..21f9b689f80bf 100644 --- a/extensions/arc/deployment/pom.xml +++ b/extensions/arc/deployment/pom.xml @@ -54,7 +54,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/assistant/deployment/pom.xml b/extensions/assistant/deployment/pom.xml index 8775d9684540a..009c2bd327705 100644 --- a/extensions/assistant/deployment/pom.xml +++ b/extensions/assistant/deployment/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/avro/deployment/pom.xml b/extensions/avro/deployment/pom.xml index b77775fc9a871..7921fd6abaf7e 100644 --- a/extensions/avro/deployment/pom.xml +++ b/extensions/avro/deployment/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/awt/deployment/pom.xml b/extensions/awt/deployment/pom.xml index 313f26f4599c3..c78a28a54da26 100644 --- a/extensions/awt/deployment/pom.xml +++ b/extensions/awt/deployment/pom.xml @@ -21,7 +21,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/cache/deployment/pom.xml b/extensions/cache/deployment/pom.xml index dfa3b265c109e..3e289d846ee23 100644 --- a/extensions/cache/deployment/pom.xml +++ b/extensions/cache/deployment/pom.xml @@ -64,7 +64,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/config-yaml/deployment/pom.xml b/extensions/config-yaml/deployment/pom.xml index aa2ba2d1ee311..25d5a400c453f 100644 --- a/extensions/config-yaml/deployment/pom.xml +++ b/extensions/config-yaml/deployment/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/container-image/container-image-openshift/deployment/pom.xml b/extensions/container-image/container-image-openshift/deployment/pom.xml index c0458deba5dfc..bd896a9828bcd 100644 --- a/extensions/container-image/container-image-openshift/deployment/pom.xml +++ b/extensions/container-image/container-image-openshift/deployment/pom.xml @@ -60,7 +60,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/container-image/deployment/pom.xml b/extensions/container-image/deployment/pom.xml index 2a3ca55a0b465..f498e8012405d 100644 --- a/extensions/container-image/deployment/pom.xml +++ b/extensions/container-image/deployment/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/devservices/deployment/pom.xml b/extensions/devservices/deployment/pom.xml index 7c2f52c5a3f3a..00bd6fbb7653f 100644 --- a/extensions/devservices/deployment/pom.xml +++ b/extensions/devservices/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/devui/deployment/pom.xml b/extensions/devui/deployment/pom.xml index af6cc8cd92d28..f5b561fffe9ae 100644 --- a/extensions/devui/deployment/pom.xml +++ b/extensions/devui/deployment/pom.xml @@ -69,12 +69,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/devui/test-spi/pom.xml b/extensions/devui/test-spi/pom.xml index de0de6d3d7027..4d9ba3023bd09 100644 --- a/extensions/devui/test-spi/pom.xml +++ b/extensions/devui/test-spi/pom.xml @@ -14,7 +14,7 @@ io.quarkus - quarkus-junit5-config + quarkus-junit-jupiter-config io.vertx diff --git a/extensions/elasticsearch-rest-client/deployment/pom.xml b/extensions/elasticsearch-rest-client/deployment/pom.xml index 8ee15d8d4f419..0fb3fa5b90245 100644 --- a/extensions/elasticsearch-rest-client/deployment/pom.xml +++ b/extensions/elasticsearch-rest-client/deployment/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/elytron-security-common/runtime/pom.xml b/extensions/elytron-security-common/runtime/pom.xml index f2faa3efd3380..a487b6fd51de1 100644 --- a/extensions/elytron-security-common/runtime/pom.xml +++ b/extensions/elytron-security-common/runtime/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/elytron-security-jdbc/deployment/pom.xml b/extensions/elytron-security-jdbc/deployment/pom.xml index 69fa9594ae2bd..3b373d44dc01a 100644 --- a/extensions/elytron-security-jdbc/deployment/pom.xml +++ b/extensions/elytron-security-jdbc/deployment/pom.xml @@ -48,12 +48,12 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/elytron-security-ldap/deployment/pom.xml b/extensions/elytron-security-ldap/deployment/pom.xml index 00307cca2130d..eb1e7c03e87c7 100644 --- a/extensions/elytron-security-ldap/deployment/pom.xml +++ b/extensions/elytron-security-ldap/deployment/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/elytron-security-oauth2/deployment/pom.xml b/extensions/elytron-security-oauth2/deployment/pom.xml index 7aa85344d655c..cd346384ef8cb 100644 --- a/extensions/elytron-security-oauth2/deployment/pom.xml +++ b/extensions/elytron-security-oauth2/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/elytron-security-properties-file/deployment/pom.xml b/extensions/elytron-security-properties-file/deployment/pom.xml index 2d450894891a8..b00c59ae5cb36 100644 --- a/extensions/elytron-security-properties-file/deployment/pom.xml +++ b/extensions/elytron-security-properties-file/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/elytron-security/deployment/pom.xml b/extensions/elytron-security/deployment/pom.xml index 7b6b2b4e29164..46a49f69e6da8 100644 --- a/extensions/elytron-security/deployment/pom.xml +++ b/extensions/elytron-security/deployment/pom.xml @@ -48,7 +48,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/elytron-security/runtime/pom.xml b/extensions/elytron-security/runtime/pom.xml index b0b27e476033b..72eb5c61b7c96 100644 --- a/extensions/elytron-security/runtime/pom.xml +++ b/extensions/elytron-security/runtime/pom.xml @@ -70,7 +70,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/flyway/deployment/pom.xml b/extensions/flyway/deployment/pom.xml index 2cd130cef47ca..09e83cabbff62 100644 --- a/extensions/flyway/deployment/pom.xml +++ b/extensions/flyway/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/flyway/runtime/pom.xml b/extensions/flyway/runtime/pom.xml index 8d4fcb05bd482..603c8fbed4c43 100644 --- a/extensions/flyway/runtime/pom.xml +++ b/extensions/flyway/runtime/pom.xml @@ -52,7 +52,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/funqy/funqy-amazon-lambda/deployment/pom.xml b/extensions/funqy/funqy-amazon-lambda/deployment/pom.xml index c0d5463ef9e70..c411fe77ffe6e 100644 --- a/extensions/funqy/funqy-amazon-lambda/deployment/pom.xml +++ b/extensions/funqy/funqy-amazon-lambda/deployment/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/funqy/funqy-http/deployment/pom.xml b/extensions/funqy/funqy-http/deployment/pom.xml index 9558d9339c68e..830d767a780fa 100644 --- a/extensions/funqy/funqy-http/deployment/pom.xml +++ b/extensions/funqy/funqy-http/deployment/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/funqy/funqy-knative-events/deployment/pom.xml b/extensions/funqy/funqy-knative-events/deployment/pom.xml index b28d16b578f00..5f89e2ab3381a 100644 --- a/extensions/funqy/funqy-knative-events/deployment/pom.xml +++ b/extensions/funqy/funqy-knative-events/deployment/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/funqy/funqy-server-common/deployment/pom.xml b/extensions/funqy/funqy-server-common/deployment/pom.xml index 3e51278b52a7f..526a75a211915 100644 --- a/extensions/funqy/funqy-server-common/deployment/pom.xml +++ b/extensions/funqy/funqy-server-common/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/funqy/funqy-server-common/runtime/pom.xml b/extensions/funqy/funqy-server-common/runtime/pom.xml index edae768348ab0..9658ad5675fe7 100644 --- a/extensions/funqy/funqy-server-common/runtime/pom.xml +++ b/extensions/funqy/funqy-server-common/runtime/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/grpc/deployment/pom.xml b/extensions/grpc/deployment/pom.xml index 8255a43f70860..4cdea940e4e6d 100644 --- a/extensions/grpc/deployment/pom.xml +++ b/extensions/grpc/deployment/pom.xml @@ -76,7 +76,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/grpc/runtime/pom.xml b/extensions/grpc/runtime/pom.xml index 656f2ed29a2e1..a5e58e9920729 100644 --- a/extensions/grpc/runtime/pom.xml +++ b/extensions/grpc/runtime/pom.xml @@ -108,7 +108,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/hal/deployment/pom.xml b/extensions/hal/deployment/pom.xml index dde2d68dd266a..15474e5da6c6a 100644 --- a/extensions/hal/deployment/pom.xml +++ b/extensions/hal/deployment/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/hibernate-envers/deployment/pom.xml b/extensions/hibernate-envers/deployment/pom.xml index 7fe25961b10a1..046da7a7fb3dc 100644 --- a/extensions/hibernate-envers/deployment/pom.xml +++ b/extensions/hibernate-envers/deployment/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/hibernate-orm/deployment/pom.xml b/extensions/hibernate-orm/deployment/pom.xml index 86de98c504ca5..5d889731895bf 100644 --- a/extensions/hibernate-orm/deployment/pom.xml +++ b/extensions/hibernate-orm/deployment/pom.xml @@ -68,7 +68,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test @@ -99,7 +99,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/hibernate-orm/runtime/pom.xml b/extensions/hibernate-orm/runtime/pom.xml index c7344c3b9cdf8..3450ebe8e3723 100644 --- a/extensions/hibernate-orm/runtime/pom.xml +++ b/extensions/hibernate-orm/runtime/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/hibernate-reactive/deployment/pom.xml b/extensions/hibernate-reactive/deployment/pom.xml index 1b7e22d1395d1..a8724d783c56e 100644 --- a/extensions/hibernate-reactive/deployment/pom.xml +++ b/extensions/hibernate-reactive/deployment/pom.xml @@ -66,7 +66,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/hibernate-search-orm-elasticsearch/deployment/pom.xml b/extensions/hibernate-search-orm-elasticsearch/deployment/pom.xml index 067abe99f0120..c3a6845c55522 100644 --- a/extensions/hibernate-search-orm-elasticsearch/deployment/pom.xml +++ b/extensions/hibernate-search-orm-elasticsearch/deployment/pom.xml @@ -49,7 +49,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/hibernate-search-orm-outbox-polling/deployment/pom.xml b/extensions/hibernate-search-orm-outbox-polling/deployment/pom.xml index 587aa39608661..4c2b10a9a3d5c 100644 --- a/extensions/hibernate-search-orm-outbox-polling/deployment/pom.xml +++ b/extensions/hibernate-search-orm-outbox-polling/deployment/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/hibernate-search-standalone-elasticsearch/deployment/pom.xml b/extensions/hibernate-search-standalone-elasticsearch/deployment/pom.xml index c8eff148ecf06..2e35b2a8842ac 100644 --- a/extensions/hibernate-search-standalone-elasticsearch/deployment/pom.xml +++ b/extensions/hibernate-search-standalone-elasticsearch/deployment/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/hibernate-validator/deployment/pom.xml b/extensions/hibernate-validator/deployment/pom.xml index 3b525bd111dbc..0149d532f2c9a 100644 --- a/extensions/hibernate-validator/deployment/pom.xml +++ b/extensions/hibernate-validator/deployment/pom.xml @@ -48,7 +48,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/infinispan-cache/deployment/pom.xml b/extensions/infinispan-cache/deployment/pom.xml index d75ddb30bb259..93245759e6635 100644 --- a/extensions/infinispan-cache/deployment/pom.xml +++ b/extensions/infinispan-cache/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/infinispan-client/deployment/pom.xml b/extensions/infinispan-client/deployment/pom.xml index 313b7b118aa4f..4f718fd4601ea 100644 --- a/extensions/infinispan-client/deployment/pom.xml +++ b/extensions/infinispan-client/deployment/pom.xml @@ -94,7 +94,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/infinispan-client/runtime/pom.xml b/extensions/infinispan-client/runtime/pom.xml index ea43893ee3067..e69c50ed26b1b 100644 --- a/extensions/infinispan-client/runtime/pom.xml +++ b/extensions/infinispan-client/runtime/pom.xml @@ -138,7 +138,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/info/deployment/pom.xml b/extensions/info/deployment/pom.xml index 1e852cc47cc12..120930b599e74 100644 --- a/extensions/info/deployment/pom.xml +++ b/extensions/info/deployment/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jackson/deployment/pom.xml b/extensions/jackson/deployment/pom.xml index 36d5510452b79..a6f9947d5b6d6 100644 --- a/extensions/jackson/deployment/pom.xml +++ b/extensions/jackson/deployment/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jaxb/deployment/pom.xml b/extensions/jaxb/deployment/pom.xml index 53d532adc436b..aace0c3c58d6f 100644 --- a/extensions/jaxb/deployment/pom.xml +++ b/extensions/jaxb/deployment/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jdbc/jdbc-db2/deployment/pom.xml b/extensions/jdbc/jdbc-db2/deployment/pom.xml index 347b5d6a3640b..357b482e527e8 100644 --- a/extensions/jdbc/jdbc-db2/deployment/pom.xml +++ b/extensions/jdbc/jdbc-db2/deployment/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jdbc/jdbc-mariadb/deployment/pom.xml b/extensions/jdbc/jdbc-mariadb/deployment/pom.xml index 1cb3db3aa2b74..04147f87909e0 100644 --- a/extensions/jdbc/jdbc-mariadb/deployment/pom.xml +++ b/extensions/jdbc/jdbc-mariadb/deployment/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jdbc/jdbc-mssql/deployment/pom.xml b/extensions/jdbc/jdbc-mssql/deployment/pom.xml index 4b612844deca8..de9733d847a2b 100644 --- a/extensions/jdbc/jdbc-mssql/deployment/pom.xml +++ b/extensions/jdbc/jdbc-mssql/deployment/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jdbc/jdbc-mysql/deployment/pom.xml b/extensions/jdbc/jdbc-mysql/deployment/pom.xml index 2cf2ff69bdb02..916336793da4e 100644 --- a/extensions/jdbc/jdbc-mysql/deployment/pom.xml +++ b/extensions/jdbc/jdbc-mysql/deployment/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jdbc/jdbc-oracle/deployment/pom.xml b/extensions/jdbc/jdbc-oracle/deployment/pom.xml index 3c4e1d16fc954..0a7e2bc29e4f6 100644 --- a/extensions/jdbc/jdbc-oracle/deployment/pom.xml +++ b/extensions/jdbc/jdbc-oracle/deployment/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jdbc/jdbc-postgresql/deployment/pom.xml b/extensions/jdbc/jdbc-postgresql/deployment/pom.xml index 308ea769bf025..13fad7ce229ee 100644 --- a/extensions/jdbc/jdbc-postgresql/deployment/pom.xml +++ b/extensions/jdbc/jdbc-postgresql/deployment/pom.xml @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jdbc/jdbc-postgresql/runtime/pom.xml b/extensions/jdbc/jdbc-postgresql/runtime/pom.xml index 9aa0461ad0c72..d300fd921c990 100644 --- a/extensions/jdbc/jdbc-postgresql/runtime/pom.xml +++ b/extensions/jdbc/jdbc-postgresql/runtime/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jfr/deployment/pom.xml b/extensions/jfr/deployment/pom.xml index 51c183e26e533..985ec7d5f0597 100644 --- a/extensions/jfr/deployment/pom.xml +++ b/extensions/jfr/deployment/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/jsonb/deployment/pom.xml b/extensions/jsonb/deployment/pom.xml index 459d613b94431..83b3b6024e638 100644 --- a/extensions/jsonb/deployment/pom.xml +++ b/extensions/jsonb/deployment/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/kafka-client/deployment/pom.xml b/extensions/kafka-client/deployment/pom.xml index 3831140ac9fcd..ca3d8ba92bf5d 100644 --- a/extensions/kafka-client/deployment/pom.xml +++ b/extensions/kafka-client/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/kafka-client/runtime/pom.xml b/extensions/kafka-client/runtime/pom.xml index be23a5c2c6742..8aa087eeb7eb4 100644 --- a/extensions/kafka-client/runtime/pom.xml +++ b/extensions/kafka-client/runtime/pom.xml @@ -70,7 +70,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/kafka-streams/deployment/pom.xml b/extensions/kafka-streams/deployment/pom.xml index 98166b82deeb6..4641ef292bc28 100644 --- a/extensions/kafka-streams/deployment/pom.xml +++ b/extensions/kafka-streams/deployment/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/kafka-streams/runtime-dev/pom.xml b/extensions/kafka-streams/runtime-dev/pom.xml index 68eb4f86da467..70cbac8aa90bd 100644 --- a/extensions/kafka-streams/runtime-dev/pom.xml +++ b/extensions/kafka-streams/runtime-dev/pom.xml @@ -19,7 +19,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/extensions/kafka-streams/runtime/pom.xml b/extensions/kafka-streams/runtime/pom.xml index 4847546f0d8d7..6e481e726df02 100644 --- a/extensions/kafka-streams/runtime/pom.xml +++ b/extensions/kafka-streams/runtime/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test @@ -52,7 +52,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/extensions/keycloak-admin-client-common/deployment/pom.xml b/extensions/keycloak-admin-client-common/deployment/pom.xml index eb3187ea0436f..e6bf1e9a66796 100644 --- a/extensions/keycloak-admin-client-common/deployment/pom.xml +++ b/extensions/keycloak-admin-client-common/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/keycloak-admin-rest-client/deployment/pom.xml b/extensions/keycloak-admin-rest-client/deployment/pom.xml index 29e4a7f628033..3bb182fcf7804 100644 --- a/extensions/keycloak-admin-rest-client/deployment/pom.xml +++ b/extensions/keycloak-admin-rest-client/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/keycloak-admin-resteasy-client/deployment/pom.xml b/extensions/keycloak-admin-resteasy-client/deployment/pom.xml index 041e5cf1a025b..e363b3ce1170a 100644 --- a/extensions/keycloak-admin-resteasy-client/deployment/pom.xml +++ b/extensions/keycloak-admin-resteasy-client/deployment/pom.xml @@ -48,7 +48,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/keycloak-authorization/deployment/pom.xml b/extensions/keycloak-authorization/deployment/pom.xml index c76a2ada27e1d..520c2f41200af 100644 --- a/extensions/keycloak-authorization/deployment/pom.xml +++ b/extensions/keycloak-authorization/deployment/pom.xml @@ -50,7 +50,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/kubernetes-client/deployment/pom.xml b/extensions/kubernetes-client/deployment/pom.xml index 09b5fa07c905a..f285ed2c2b1b1 100644 --- a/extensions/kubernetes-client/deployment/pom.xml +++ b/extensions/kubernetes-client/deployment/pom.xml @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/kubernetes/openshift/deployment/pom.xml b/extensions/kubernetes/openshift/deployment/pom.xml index f2a48b367751e..c2f7bc33efa72 100644 --- a/extensions/kubernetes/openshift/deployment/pom.xml +++ b/extensions/kubernetes/openshift/deployment/pom.xml @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/kubernetes/vanilla/deployment/pom.xml b/extensions/kubernetes/vanilla/deployment/pom.xml index 6bdefef5ba11b..17e836d0d8068 100644 --- a/extensions/kubernetes/vanilla/deployment/pom.xml +++ b/extensions/kubernetes/vanilla/deployment/pom.xml @@ -112,7 +112,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/liquibase/liquibase-mongodb/runtime/pom.xml b/extensions/liquibase/liquibase-mongodb/runtime/pom.xml index 75a6913e02418..154c25fcbf652 100644 --- a/extensions/liquibase/liquibase-mongodb/runtime/pom.xml +++ b/extensions/liquibase/liquibase-mongodb/runtime/pom.xml @@ -56,7 +56,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/liquibase/liquibase/deployment/pom.xml b/extensions/liquibase/liquibase/deployment/pom.xml index ba9d17ccc3636..426ad26048727 100644 --- a/extensions/liquibase/liquibase/deployment/pom.xml +++ b/extensions/liquibase/liquibase/deployment/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/liquibase/liquibase/runtime/pom.xml b/extensions/liquibase/liquibase/runtime/pom.xml index 8ce094b7dae5b..90e0c4c179761 100644 --- a/extensions/liquibase/liquibase/runtime/pom.xml +++ b/extensions/liquibase/liquibase/runtime/pom.xml @@ -68,7 +68,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/load-shedding/deployment/pom.xml b/extensions/load-shedding/deployment/pom.xml index f711856cd346b..28268abe29b36 100644 --- a/extensions/load-shedding/deployment/pom.xml +++ b/extensions/load-shedding/deployment/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/logging-json/deployment/pom.xml b/extensions/logging-json/deployment/pom.xml index 55f7a5f436c9a..e5cb0a2cba0f9 100644 --- a/extensions/logging-json/deployment/pom.xml +++ b/extensions/logging-json/deployment/pom.xml @@ -29,12 +29,12 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/mailer/deployment/pom.xml b/extensions/mailer/deployment/pom.xml index 5354e2b6fb068..35b1a70189f03 100644 --- a/extensions/mailer/deployment/pom.xml +++ b/extensions/mailer/deployment/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/mailer/runtime/pom.xml b/extensions/mailer/runtime/pom.xml index cd2a87d365d3d..f82c50ae1e107 100644 --- a/extensions/mailer/runtime/pom.xml +++ b/extensions/mailer/runtime/pom.xml @@ -61,7 +61,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/micrometer-opentelemetry/deployment/pom.xml b/extensions/micrometer-opentelemetry/deployment/pom.xml index a500f05fa846a..1e307177e405f 100644 --- a/extensions/micrometer-opentelemetry/deployment/pom.xml +++ b/extensions/micrometer-opentelemetry/deployment/pom.xml @@ -36,13 +36,13 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/micrometer/deployment/pom.xml b/extensions/micrometer/deployment/pom.xml index cf381f90c8470..185dcb17b3cc3 100644 --- a/extensions/micrometer/deployment/pom.xml +++ b/extensions/micrometer/deployment/pom.xml @@ -75,7 +75,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/mongodb-client/deployment/pom.xml b/extensions/mongodb-client/deployment/pom.xml index 26793f47ffe19..369effc3600ad 100644 --- a/extensions/mongodb-client/deployment/pom.xml +++ b/extensions/mongodb-client/deployment/pom.xml @@ -78,7 +78,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/mongodb-client/runtime/pom.xml b/extensions/mongodb-client/runtime/pom.xml index af44d9db8b5f2..9cfb6d39fb2c4 100644 --- a/extensions/mongodb-client/runtime/pom.xml +++ b/extensions/mongodb-client/runtime/pom.xml @@ -94,7 +94,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/mutiny/deployment/pom.xml b/extensions/mutiny/deployment/pom.xml index f7b1e6bc665f7..225a9211733ff 100644 --- a/extensions/mutiny/deployment/pom.xml +++ b/extensions/mutiny/deployment/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/mutiny/runtime/pom.xml b/extensions/mutiny/runtime/pom.xml index d371c3be102ee..48d6bfda1dcc9 100644 --- a/extensions/mutiny/runtime/pom.xml +++ b/extensions/mutiny/runtime/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/narayana-jta/deployment/pom.xml b/extensions/narayana-jta/deployment/pom.xml index 9cb051259de8a..c09eadf094c1c 100644 --- a/extensions/narayana-jta/deployment/pom.xml +++ b/extensions/narayana-jta/deployment/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/narayana-jta/runtime/pom.xml b/extensions/narayana-jta/runtime/pom.xml index 56552a061022d..6752a48bb9833 100644 --- a/extensions/narayana-jta/runtime/pom.xml +++ b/extensions/narayana-jta/runtime/pom.xml @@ -86,12 +86,12 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/narayana-lra/deployment/pom.xml b/extensions/narayana-lra/deployment/pom.xml index 4091b05335038..807948862b158 100644 --- a/extensions/narayana-lra/deployment/pom.xml +++ b/extensions/narayana-lra/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/observability-devservices/deployment/pom.xml b/extensions/observability-devservices/deployment/pom.xml index 8a64966e0f394..e5b6702df6ddb 100644 --- a/extensions/observability-devservices/deployment/pom.xml +++ b/extensions/observability-devservices/deployment/pom.xml @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/observability-devservices/runtime/pom.xml b/extensions/observability-devservices/runtime/pom.xml index 4d6e62ca246cb..1d0eb6be207c5 100644 --- a/extensions/observability-devservices/runtime/pom.xml +++ b/extensions/observability-devservices/runtime/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-client-filter/deployment/pom.xml b/extensions/oidc-client-filter/deployment/pom.xml index de9d9280efc7d..5a4c9cc16d9a9 100644 --- a/extensions/oidc-client-filter/deployment/pom.xml +++ b/extensions/oidc-client-filter/deployment/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-client-filter/runtime/pom.xml b/extensions/oidc-client-filter/runtime/pom.xml index 5982ff89034e0..ea97d28447871 100644 --- a/extensions/oidc-client-filter/runtime/pom.xml +++ b/extensions/oidc-client-filter/runtime/pom.xml @@ -23,7 +23,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-client-graphql/deployment/pom.xml b/extensions/oidc-client-graphql/deployment/pom.xml index 3997bd4e39efd..2d034ca7a2c5e 100644 --- a/extensions/oidc-client-graphql/deployment/pom.xml +++ b/extensions/oidc-client-graphql/deployment/pom.xml @@ -36,7 +36,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-client-graphql/runtime/pom.xml b/extensions/oidc-client-graphql/runtime/pom.xml index 7fda45075d1be..11f198640a8e2 100644 --- a/extensions/oidc-client-graphql/runtime/pom.xml +++ b/extensions/oidc-client-graphql/runtime/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-client-reactive-filter/deployment/pom.xml b/extensions/oidc-client-reactive-filter/deployment/pom.xml index ab92a8248c4ce..9d4c03472edf8 100644 --- a/extensions/oidc-client-reactive-filter/deployment/pom.xml +++ b/extensions/oidc-client-reactive-filter/deployment/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-client-reactive-filter/runtime/pom.xml b/extensions/oidc-client-reactive-filter/runtime/pom.xml index 36fab0359d879..6d426b17d3ad6 100644 --- a/extensions/oidc-client-reactive-filter/runtime/pom.xml +++ b/extensions/oidc-client-reactive-filter/runtime/pom.xml @@ -23,7 +23,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-client-registration/deployment/pom.xml b/extensions/oidc-client-registration/deployment/pom.xml index 3ef0d8dbb10d7..5c81f73cec38c 100644 --- a/extensions/oidc-client-registration/deployment/pom.xml +++ b/extensions/oidc-client-registration/deployment/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-client-registration/runtime/pom.xml b/extensions/oidc-client-registration/runtime/pom.xml index 5edc8b2326bc2..01d5fcc66c175 100644 --- a/extensions/oidc-client-registration/runtime/pom.xml +++ b/extensions/oidc-client-registration/runtime/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-client/deployment/pom.xml b/extensions/oidc-client/deployment/pom.xml index 7e720a5d1db87..4c186eaf88894 100644 --- a/extensions/oidc-client/deployment/pom.xml +++ b/extensions/oidc-client/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-client/runtime/pom.xml b/extensions/oidc-client/runtime/pom.xml index 0091875c7551e..8c1816a2f9284 100644 --- a/extensions/oidc-client/runtime/pom.xml +++ b/extensions/oidc-client/runtime/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-common/runtime/pom.xml b/extensions/oidc-common/runtime/pom.xml index ba59688a9c5b2..89d54f416c728 100644 --- a/extensions/oidc-common/runtime/pom.xml +++ b/extensions/oidc-common/runtime/pom.xml @@ -47,7 +47,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-db-token-state-manager/deployment/pom.xml b/extensions/oidc-db-token-state-manager/deployment/pom.xml index c4ec597917ab4..9b7820831ee19 100644 --- a/extensions/oidc-db-token-state-manager/deployment/pom.xml +++ b/extensions/oidc-db-token-state-manager/deployment/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-redis-token-state-manager/deployment/pom.xml b/extensions/oidc-redis-token-state-manager/deployment/pom.xml index 989ee4ea2aa3f..c087cf79e7427 100644 --- a/extensions/oidc-redis-token-state-manager/deployment/pom.xml +++ b/extensions/oidc-redis-token-state-manager/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-token-propagation-reactive/deployment/pom.xml b/extensions/oidc-token-propagation-reactive/deployment/pom.xml index f3d404a1449f5..db32be6f68beb 100644 --- a/extensions/oidc-token-propagation-reactive/deployment/pom.xml +++ b/extensions/oidc-token-propagation-reactive/deployment/pom.xml @@ -51,7 +51,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc-token-propagation/deployment/pom.xml b/extensions/oidc-token-propagation/deployment/pom.xml index b0493801c74d3..405cb5c9e1e13 100644 --- a/extensions/oidc-token-propagation/deployment/pom.xml +++ b/extensions/oidc-token-propagation/deployment/pom.xml @@ -55,7 +55,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc/deployment/pom.xml b/extensions/oidc/deployment/pom.xml index 71a2fa6d70086..786f4db2aa63b 100644 --- a/extensions/oidc/deployment/pom.xml +++ b/extensions/oidc/deployment/pom.xml @@ -86,7 +86,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/oidc/runtime/pom.xml b/extensions/oidc/runtime/pom.xml index 3b91971600968..afd3f81a50b34 100644 --- a/extensions/oidc/runtime/pom.xml +++ b/extensions/oidc/runtime/pom.xml @@ -56,7 +56,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/openshift-client/deployment/pom.xml b/extensions/openshift-client/deployment/pom.xml index be6e59b1dc0d5..855296f3d71fa 100644 --- a/extensions/openshift-client/deployment/pom.xml +++ b/extensions/openshift-client/deployment/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/opentelemetry/deployment/pom.xml b/extensions/opentelemetry/deployment/pom.xml index 8c550ceb70b2d..9f0d12c4b1314 100644 --- a/extensions/opentelemetry/deployment/pom.xml +++ b/extensions/opentelemetry/deployment/pom.xml @@ -61,12 +61,12 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/opentelemetry/runtime/pom.xml b/extensions/opentelemetry/runtime/pom.xml index 7eeb04c154e88..63b5faef26282 100644 --- a/extensions/opentelemetry/runtime/pom.xml +++ b/extensions/opentelemetry/runtime/pom.xml @@ -210,7 +210,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/hibernate-orm-panache-kotlin/deployment/pom.xml b/extensions/panache/hibernate-orm-panache-kotlin/deployment/pom.xml index d7dc78538de28..fb5641a5482b0 100644 --- a/extensions/panache/hibernate-orm-panache-kotlin/deployment/pom.xml +++ b/extensions/panache/hibernate-orm-panache-kotlin/deployment/pom.xml @@ -50,7 +50,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/hibernate-orm-panache-kotlin/runtime/pom.xml b/extensions/panache/hibernate-orm-panache-kotlin/runtime/pom.xml index fab0ef27078b0..6fc1bf78f87b5 100644 --- a/extensions/panache/hibernate-orm-panache-kotlin/runtime/pom.xml +++ b/extensions/panache/hibernate-orm-panache-kotlin/runtime/pom.xml @@ -50,7 +50,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/hibernate-orm-panache/deployment/pom.xml b/extensions/panache/hibernate-orm-panache/deployment/pom.xml index 12d5d41e6364b..e9ae48deaf432 100644 --- a/extensions/panache/hibernate-orm-panache/deployment/pom.xml +++ b/extensions/panache/hibernate-orm-panache/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/hibernate-orm-rest-data-panache/deployment/pom.xml b/extensions/panache/hibernate-orm-rest-data-panache/deployment/pom.xml index 7bbde890e8b4f..f3c65b32f500f 100644 --- a/extensions/panache/hibernate-orm-rest-data-panache/deployment/pom.xml +++ b/extensions/panache/hibernate-orm-rest-data-panache/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/hibernate-reactive-panache-kotlin/deployment/pom.xml b/extensions/panache/hibernate-reactive-panache-kotlin/deployment/pom.xml index e176434f2b5c1..fbcd4d00cf27c 100644 --- a/extensions/panache/hibernate-reactive-panache-kotlin/deployment/pom.xml +++ b/extensions/panache/hibernate-reactive-panache-kotlin/deployment/pom.xml @@ -36,7 +36,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/hibernate-reactive-panache/deployment/pom.xml b/extensions/panache/hibernate-reactive-panache/deployment/pom.xml index ea051e1cfbb21..142b18c9d1db8 100644 --- a/extensions/panache/hibernate-reactive-panache/deployment/pom.xml +++ b/extensions/panache/hibernate-reactive-panache/deployment/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/hibernate-reactive-rest-data-panache/deployment/pom.xml b/extensions/panache/hibernate-reactive-rest-data-panache/deployment/pom.xml index 8729e38d866f8..24d91810f9a65 100644 --- a/extensions/panache/hibernate-reactive-rest-data-panache/deployment/pom.xml +++ b/extensions/panache/hibernate-reactive-rest-data-panache/deployment/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/mongodb-panache-common/deployment/pom.xml b/extensions/panache/mongodb-panache-common/deployment/pom.xml index b1fbfef414f3d..7cbd749f9098d 100644 --- a/extensions/panache/mongodb-panache-common/deployment/pom.xml +++ b/extensions/panache/mongodb-panache-common/deployment/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/mongodb-panache-kotlin/deployment/pom.xml b/extensions/panache/mongodb-panache-kotlin/deployment/pom.xml index ddd0ed62537a7..7a34e525c1b73 100644 --- a/extensions/panache/mongodb-panache-kotlin/deployment/pom.xml +++ b/extensions/panache/mongodb-panache-kotlin/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/mongodb-panache/deployment/pom.xml b/extensions/panache/mongodb-panache/deployment/pom.xml index a51cd8bd288a1..187282c29bf16 100644 --- a/extensions/panache/mongodb-panache/deployment/pom.xml +++ b/extensions/panache/mongodb-panache/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/panache/panache-mock/pom.xml b/extensions/panache/panache-mock/pom.xml index 88cf808f18383..aa2396f795b1c 100644 --- a/extensions/panache/panache-mock/pom.xml +++ b/extensions/panache/panache-mock/pom.xml @@ -28,11 +28,11 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito io.quarkus - quarkus-junit5-component + quarkus-junit-jupiter-component true diff --git a/extensions/panache/rest-data-panache/deployment/pom.xml b/extensions/panache/rest-data-panache/deployment/pom.xml index fdaa530f6713c..5b65aed1176c7 100644 --- a/extensions/panache/rest-data-panache/deployment/pom.xml +++ b/extensions/panache/rest-data-panache/deployment/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/picocli/deployment/pom.xml b/extensions/picocli/deployment/pom.xml index 96983bfd2116b..b9a3f970bb024 100644 --- a/extensions/picocli/deployment/pom.xml +++ b/extensions/picocli/deployment/pom.xml @@ -29,12 +29,12 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/proxy-registry/deployment/pom.xml b/extensions/proxy-registry/deployment/pom.xml index 79899611397bc..787a8bdfeb95b 100644 --- a/extensions/proxy-registry/deployment/pom.xml +++ b/extensions/proxy-registry/deployment/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/quartz/deployment/pom.xml b/extensions/quartz/deployment/pom.xml index 3c3294bb7144a..31ce0e8f23632 100644 --- a/extensions/quartz/deployment/pom.xml +++ b/extensions/quartz/deployment/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/qute/deployment/pom.xml b/extensions/qute/deployment/pom.xml index bb8d8d92415bc..c32f2aac90025 100644 --- a/extensions/qute/deployment/pom.xml +++ b/extensions/qute/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/reactive-datasource/deployment/pom.xml b/extensions/reactive-datasource/deployment/pom.xml index 87637875c5e39..eb1cd40ac7c09 100644 --- a/extensions/reactive-datasource/deployment/pom.xml +++ b/extensions/reactive-datasource/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/reactive-mssql-client/deployment/pom.xml b/extensions/reactive-mssql-client/deployment/pom.xml index 6e3f8a3309452..af7bbb4fa6b33 100644 --- a/extensions/reactive-mssql-client/deployment/pom.xml +++ b/extensions/reactive-mssql-client/deployment/pom.xml @@ -56,7 +56,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/reactive-mysql-client/deployment/pom.xml b/extensions/reactive-mysql-client/deployment/pom.xml index 3128ae1428d46..9de111374305a 100644 --- a/extensions/reactive-mysql-client/deployment/pom.xml +++ b/extensions/reactive-mysql-client/deployment/pom.xml @@ -77,7 +77,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/reactive-oracle-client/deployment/pom.xml b/extensions/reactive-oracle-client/deployment/pom.xml index 08c2762326a94..630fc6755e4bc 100644 --- a/extensions/reactive-oracle-client/deployment/pom.xml +++ b/extensions/reactive-oracle-client/deployment/pom.xml @@ -70,7 +70,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/reactive-pg-client/deployment/pom.xml b/extensions/reactive-pg-client/deployment/pom.xml index 526a5676f6b9a..b2555ec3f6baf 100644 --- a/extensions/reactive-pg-client/deployment/pom.xml +++ b/extensions/reactive-pg-client/deployment/pom.xml @@ -56,7 +56,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/reactive-routes/deployment/pom.xml b/extensions/reactive-routes/deployment/pom.xml index 003067462d7fa..b21dbb7f40767 100644 --- a/extensions/reactive-routes/deployment/pom.xml +++ b/extensions/reactive-routes/deployment/pom.xml @@ -56,7 +56,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/reactive-streams-operators/mutiny-reactive-streams-operators/deployment/pom.xml b/extensions/reactive-streams-operators/mutiny-reactive-streams-operators/deployment/pom.xml index f05efcb0909f9..3d02ad26e05f4 100644 --- a/extensions/reactive-streams-operators/mutiny-reactive-streams-operators/deployment/pom.xml +++ b/extensions/reactive-streams-operators/mutiny-reactive-streams-operators/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/reactive-streams-operators/smallrye-reactive-streams-operators/deployment/pom.xml b/extensions/reactive-streams-operators/smallrye-reactive-streams-operators/deployment/pom.xml index 2fc5c3ed4d5c9..bd9958ba824c5 100644 --- a/extensions/reactive-streams-operators/smallrye-reactive-streams-operators/deployment/pom.xml +++ b/extensions/reactive-streams-operators/smallrye-reactive-streams-operators/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/redis-cache/deployment/pom.xml b/extensions/redis-cache/deployment/pom.xml index 4fa7d52ac6ef9..bb1a840cb1e50 100644 --- a/extensions/redis-cache/deployment/pom.xml +++ b/extensions/redis-cache/deployment/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/redis-client/deployment/pom.xml b/extensions/redis-client/deployment/pom.xml index 5a4d01013c823..ea872ca1d49c6 100644 --- a/extensions/redis-client/deployment/pom.xml +++ b/extensions/redis-client/deployment/pom.xml @@ -59,7 +59,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/rest-client-config/deployment/pom.xml b/extensions/resteasy-classic/rest-client-config/deployment/pom.xml index 6e393f01fa3ba..33abe2e49cd3b 100644 --- a/extensions/resteasy-classic/rest-client-config/deployment/pom.xml +++ b/extensions/resteasy-classic/rest-client-config/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/rest-client-config/runtime/pom.xml b/extensions/resteasy-classic/rest-client-config/runtime/pom.xml index 295009715b204..ca940b8b8f1a8 100644 --- a/extensions/resteasy-classic/rest-client-config/runtime/pom.xml +++ b/extensions/resteasy-classic/rest-client-config/runtime/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/resteasy-classic/resteasy-client-jackson/deployment/pom.xml b/extensions/resteasy-classic/resteasy-client-jackson/deployment/pom.xml index 0dc5d4b990eeb..1edf3e633459e 100644 --- a/extensions/resteasy-classic/resteasy-client-jackson/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-client-jackson/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-client-jaxb/deployment/pom.xml b/extensions/resteasy-classic/resteasy-client-jaxb/deployment/pom.xml index 4f8ed3f46460c..3604d1d7f4d47 100644 --- a/extensions/resteasy-classic/resteasy-client-jaxb/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-client-jaxb/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-client-jsonb/deployment/pom.xml b/extensions/resteasy-classic/resteasy-client-jsonb/deployment/pom.xml index b68a8f792c06d..34d9fa2f3d0b1 100644 --- a/extensions/resteasy-classic/resteasy-client-jsonb/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-client-jsonb/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-client-mutiny/deployment/pom.xml b/extensions/resteasy-classic/resteasy-client-mutiny/deployment/pom.xml index abe9a2689494f..fa61ec3c9116b 100644 --- a/extensions/resteasy-classic/resteasy-client-mutiny/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-client-mutiny/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-client/deployment/pom.xml b/extensions/resteasy-classic/resteasy-client/deployment/pom.xml index 0bcfdf8e974c2..cca65b48f528b 100644 --- a/extensions/resteasy-classic/resteasy-client/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-client/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-client/runtime/pom.xml b/extensions/resteasy-classic/resteasy-client/runtime/pom.xml index 84ee6486e0ff4..bdb762286d991 100644 --- a/extensions/resteasy-classic/resteasy-client/runtime/pom.xml +++ b/extensions/resteasy-classic/resteasy-client/runtime/pom.xml @@ -93,7 +93,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-jackson/deployment/pom.xml b/extensions/resteasy-classic/resteasy-jackson/deployment/pom.xml index 1fae47a05b8bc..6b876f8f549b4 100644 --- a/extensions/resteasy-classic/resteasy-jackson/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-jackson/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-jaxb/deployment/pom.xml b/extensions/resteasy-classic/resteasy-jaxb/deployment/pom.xml index f864cc70724e9..0568f629241d9 100644 --- a/extensions/resteasy-classic/resteasy-jaxb/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-jaxb/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-jsonb/deployment/pom.xml b/extensions/resteasy-classic/resteasy-jsonb/deployment/pom.xml index 83e9c7b7f19e8..ee1d4d98ea175 100644 --- a/extensions/resteasy-classic/resteasy-jsonb/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-jsonb/deployment/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-links/deployment/pom.xml b/extensions/resteasy-classic/resteasy-links/deployment/pom.xml index 00afc00a858e4..edad235c803c8 100644 --- a/extensions/resteasy-classic/resteasy-links/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-links/deployment/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-multipart/deployment/pom.xml b/extensions/resteasy-classic/resteasy-multipart/deployment/pom.xml index d20e6b79e3f73..b0a29c4a690eb 100644 --- a/extensions/resteasy-classic/resteasy-multipart/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-multipart/deployment/pom.xml @@ -23,7 +23,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-mutiny-common/runtime/pom.xml b/extensions/resteasy-classic/resteasy-mutiny-common/runtime/pom.xml index f6ee5b8533d3e..926900b4a85a0 100644 --- a/extensions/resteasy-classic/resteasy-mutiny-common/runtime/pom.xml +++ b/extensions/resteasy-classic/resteasy-mutiny-common/runtime/pom.xml @@ -51,7 +51,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-mutiny/deployment/pom.xml b/extensions/resteasy-classic/resteasy-mutiny/deployment/pom.xml index e55775ab0e8f3..ad7abbedd6dda 100644 --- a/extensions/resteasy-classic/resteasy-mutiny/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-mutiny/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-mutiny/runtime/pom.xml b/extensions/resteasy-classic/resteasy-mutiny/runtime/pom.xml index 2d24d5e790bad..d27fecca8d4ce 100644 --- a/extensions/resteasy-classic/resteasy-mutiny/runtime/pom.xml +++ b/extensions/resteasy-classic/resteasy-mutiny/runtime/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy-qute/deployment/pom.xml b/extensions/resteasy-classic/resteasy-qute/deployment/pom.xml index c1dae2af893df..710ff433e7d48 100644 --- a/extensions/resteasy-classic/resteasy-qute/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy-qute/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-classic/resteasy/deployment/pom.xml b/extensions/resteasy-classic/resteasy/deployment/pom.xml index 1add9051885e5..54f298fb1cc0c 100644 --- a/extensions/resteasy-classic/resteasy/deployment/pom.xml +++ b/extensions/resteasy-classic/resteasy/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-client-jackson/deployment/pom.xml b/extensions/resteasy-reactive/rest-client-jackson/deployment/pom.xml index e5d0ef7b25330..8594cd3f02059 100644 --- a/extensions/resteasy-reactive/rest-client-jackson/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-client-jackson/deployment/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-client-jaxb/deployment/pom.xml b/extensions/resteasy-reactive/rest-client-jaxb/deployment/pom.xml index 11e8c3e95f621..7f5bb4a762cd4 100644 --- a/extensions/resteasy-reactive/rest-client-jaxb/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-client-jaxb/deployment/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-client-jaxrs/deployment/pom.xml b/extensions/resteasy-reactive/rest-client-jaxrs/deployment/pom.xml index bc8a8c616760a..84553ca920d09 100644 --- a/extensions/resteasy-reactive/rest-client-jaxrs/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-client-jaxrs/deployment/pom.xml @@ -52,7 +52,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-client-jsonb/deployment/pom.xml b/extensions/resteasy-reactive/rest-client-jsonb/deployment/pom.xml index 8e7d33b9c15ff..e39316dfb23a7 100644 --- a/extensions/resteasy-reactive/rest-client-jsonb/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-client-jsonb/deployment/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-client-kotlin-serialization/deployment/pom.xml b/extensions/resteasy-reactive/rest-client-kotlin-serialization/deployment/pom.xml index b4ea4767243ba..d816d569736db 100644 --- a/extensions/resteasy-reactive/rest-client-kotlin-serialization/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-client-kotlin-serialization/deployment/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-client-kotlin-serialization/tests/pom.xml b/extensions/resteasy-reactive/rest-client-kotlin-serialization/tests/pom.xml index a9c25a0476e58..8b5530f0e0842 100644 --- a/extensions/resteasy-reactive/rest-client-kotlin-serialization/tests/pom.xml +++ b/extensions/resteasy-reactive/rest-client-kotlin-serialization/tests/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-client/deployment/pom.xml b/extensions/resteasy-reactive/rest-client/deployment/pom.xml index 54703574421db..08e64afc39203 100644 --- a/extensions/resteasy-reactive/rest-client/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-client/deployment/pom.xml @@ -68,7 +68,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-client/runtime/pom.xml b/extensions/resteasy-reactive/rest-client/runtime/pom.xml index 744bcbb6d0f0c..669f167f17beb 100644 --- a/extensions/resteasy-reactive/rest-client/runtime/pom.xml +++ b/extensions/resteasy-reactive/rest-client/runtime/pom.xml @@ -44,12 +44,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-csrf/deployment/pom.xml b/extensions/resteasy-reactive/rest-csrf/deployment/pom.xml index ac74515d94073..eb689981a1997 100644 --- a/extensions/resteasy-reactive/rest-csrf/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-csrf/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-jackson/deployment/pom.xml b/extensions/resteasy-reactive/rest-jackson/deployment/pom.xml index 575644d4586c1..6889a2aa2446e 100644 --- a/extensions/resteasy-reactive/rest-jackson/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-jackson/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-jaxb/deployment/pom.xml b/extensions/resteasy-reactive/rest-jaxb/deployment/pom.xml index 280bf9d77ba5d..bc1a06d53ce3d 100644 --- a/extensions/resteasy-reactive/rest-jaxb/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-jaxb/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-jsonb/deployment/pom.xml b/extensions/resteasy-reactive/rest-jsonb/deployment/pom.xml index eccc4d245c7fd..9fdfa1752cb4b 100644 --- a/extensions/resteasy-reactive/rest-jsonb/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-jsonb/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-kotlin-serialization-common/deployment/pom.xml b/extensions/resteasy-reactive/rest-kotlin-serialization-common/deployment/pom.xml index 34164d680d281..e707be357f82b 100644 --- a/extensions/resteasy-reactive/rest-kotlin-serialization-common/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-kotlin-serialization-common/deployment/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-kotlin-serialization-common/runtime/pom.xml b/extensions/resteasy-reactive/rest-kotlin-serialization-common/runtime/pom.xml index ee8e4d0d1d51c..e845be8d16173 100644 --- a/extensions/resteasy-reactive/rest-kotlin-serialization-common/runtime/pom.xml +++ b/extensions/resteasy-reactive/rest-kotlin-serialization-common/runtime/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-links/deployment/pom.xml b/extensions/resteasy-reactive/rest-links/deployment/pom.xml index dd6d21d16c505..850b38f6daafb 100644 --- a/extensions/resteasy-reactive/rest-links/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-links/deployment/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-qute/deployment/pom.xml b/extensions/resteasy-reactive/rest-qute/deployment/pom.xml index b624cc0e9721a..20be57734e245 100644 --- a/extensions/resteasy-reactive/rest-qute/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-qute/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest-servlet/deployment/pom.xml b/extensions/resteasy-reactive/rest-servlet/deployment/pom.xml index ba556e043dd2c..aebf75e692538 100644 --- a/extensions/resteasy-reactive/rest-servlet/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest-servlet/deployment/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/resteasy-reactive/rest/deployment/pom.xml b/extensions/resteasy-reactive/rest/deployment/pom.xml index baa5aeb76019a..69fc050dfe620 100644 --- a/extensions/resteasy-reactive/rest/deployment/pom.xml +++ b/extensions/resteasy-reactive/rest/deployment/pom.xml @@ -73,7 +73,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/scheduler/deployment/pom.xml b/extensions/scheduler/deployment/pom.xml index 7fec966c6e2e4..10b000653ace6 100644 --- a/extensions/scheduler/deployment/pom.xml +++ b/extensions/scheduler/deployment/pom.xml @@ -55,7 +55,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/security-jpa-reactive/deployment/pom.xml b/extensions/security-jpa-reactive/deployment/pom.xml index e681917b9dfde..f89b955a190e5 100644 --- a/extensions/security-jpa-reactive/deployment/pom.xml +++ b/extensions/security-jpa-reactive/deployment/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/security-jpa/deployment/pom.xml b/extensions/security-jpa/deployment/pom.xml index 2ac51103932ee..8da40e718d24a 100644 --- a/extensions/security-jpa/deployment/pom.xml +++ b/extensions/security-jpa/deployment/pom.xml @@ -55,7 +55,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/security-webauthn/deployment/pom.xml b/extensions/security-webauthn/deployment/pom.xml index bf0f0d74fe732..4081b4ec2d19d 100644 --- a/extensions/security-webauthn/deployment/pom.xml +++ b/extensions/security-webauthn/deployment/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/security/deployment/pom.xml b/extensions/security/deployment/pom.xml index 14a37927038ef..54d574a3ee308 100644 --- a/extensions/security/deployment/pom.xml +++ b/extensions/security/deployment/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/security/runtime/pom.xml b/extensions/security/runtime/pom.xml index d05dd5738fb53..923a0ef91ae75 100644 --- a/extensions/security/runtime/pom.xml +++ b/extensions/security/runtime/pom.xml @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/security/test-utils/pom.xml b/extensions/security/test-utils/pom.xml index 01f287aaa3857..e207d7b1955ec 100644 --- a/extensions/security/test-utils/pom.xml +++ b/extensions/security/test-utils/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal io.rest-assured diff --git a/extensions/smallrye-context-propagation/deployment/pom.xml b/extensions/smallrye-context-propagation/deployment/pom.xml index b7619fc0a23a4..728a39f6809af 100644 --- a/extensions/smallrye-context-propagation/deployment/pom.xml +++ b/extensions/smallrye-context-propagation/deployment/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-fault-tolerance/deployment/pom.xml b/extensions/smallrye-fault-tolerance/deployment/pom.xml index f4ba52163f477..90feb0555131b 100644 --- a/extensions/smallrye-fault-tolerance/deployment/pom.xml +++ b/extensions/smallrye-fault-tolerance/deployment/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-graphql-client/deployment/pom.xml b/extensions/smallrye-graphql-client/deployment/pom.xml index bc4ea4bcff34e..9efb0131cc0b8 100644 --- a/extensions/smallrye-graphql-client/deployment/pom.xml +++ b/extensions/smallrye-graphql-client/deployment/pom.xml @@ -55,7 +55,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-graphql/deployment/pom.xml b/extensions/smallrye-graphql/deployment/pom.xml index 73bb3794b3b21..053a8a4764fc0 100644 --- a/extensions/smallrye-graphql/deployment/pom.xml +++ b/extensions/smallrye-graphql/deployment/pom.xml @@ -64,7 +64,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-health/deployment/pom.xml b/extensions/smallrye-health/deployment/pom.xml index 97ba964a1f1b7..be7d07191b136 100644 --- a/extensions/smallrye-health/deployment/pom.xml +++ b/extensions/smallrye-health/deployment/pom.xml @@ -52,7 +52,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-jwt-build/deployment/pom.xml b/extensions/smallrye-jwt-build/deployment/pom.xml index 2b3f73e683d10..b5c5ae63cfb3c 100644 --- a/extensions/smallrye-jwt-build/deployment/pom.xml +++ b/extensions/smallrye-jwt-build/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-jwt/deployment/pom.xml b/extensions/smallrye-jwt/deployment/pom.xml index 5ccd553fa3e22..8ce8f62e495b3 100644 --- a/extensions/smallrye-jwt/deployment/pom.xml +++ b/extensions/smallrye-jwt/deployment/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-metrics/deployment/pom.xml b/extensions/smallrye-metrics/deployment/pom.xml index 0d2b2e8cae815..f33d928362405 100644 --- a/extensions/smallrye-metrics/deployment/pom.xml +++ b/extensions/smallrye-metrics/deployment/pom.xml @@ -58,7 +58,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-openapi/deployment/pom.xml b/extensions/smallrye-openapi/deployment/pom.xml index 2b978f5be6494..65c1d04b09607 100644 --- a/extensions/smallrye-openapi/deployment/pom.xml +++ b/extensions/smallrye-openapi/deployment/pom.xml @@ -93,7 +93,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-reactive-messaging-amqp/deployment/pom.xml b/extensions/smallrye-reactive-messaging-amqp/deployment/pom.xml index e6e2971530140..df1f2d978a725 100644 --- a/extensions/smallrye-reactive-messaging-amqp/deployment/pom.xml +++ b/extensions/smallrye-reactive-messaging-amqp/deployment/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-reactive-messaging-kafka/deployment/pom.xml b/extensions/smallrye-reactive-messaging-kafka/deployment/pom.xml index 0cdeb34d17a97..1d0c809b2e885 100644 --- a/extensions/smallrye-reactive-messaging-kafka/deployment/pom.xml +++ b/extensions/smallrye-reactive-messaging-kafka/deployment/pom.xml @@ -59,7 +59,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test @@ -74,7 +74,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/smallrye-reactive-messaging-mqtt/deployment/pom.xml b/extensions/smallrye-reactive-messaging-mqtt/deployment/pom.xml index af47df29cf77c..3d61542f6d0fc 100644 --- a/extensions/smallrye-reactive-messaging-mqtt/deployment/pom.xml +++ b/extensions/smallrye-reactive-messaging-mqtt/deployment/pom.xml @@ -53,7 +53,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-reactive-messaging-pulsar/deployment/pom.xml b/extensions/smallrye-reactive-messaging-pulsar/deployment/pom.xml index 76404947dcf57..cb67b2a2a2311 100644 --- a/extensions/smallrye-reactive-messaging-pulsar/deployment/pom.xml +++ b/extensions/smallrye-reactive-messaging-pulsar/deployment/pom.xml @@ -52,7 +52,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-reactive-messaging-pulsar/runtime/pom.xml b/extensions/smallrye-reactive-messaging-pulsar/runtime/pom.xml index d34381809feb6..abd026abe2c74 100644 --- a/extensions/smallrye-reactive-messaging-pulsar/runtime/pom.xml +++ b/extensions/smallrye-reactive-messaging-pulsar/runtime/pom.xml @@ -128,7 +128,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/smallrye-reactive-messaging/deployment/pom.xml b/extensions/smallrye-reactive-messaging/deployment/pom.xml index 35087ac197738..b6f45e3e833fe 100644 --- a/extensions/smallrye-reactive-messaging/deployment/pom.xml +++ b/extensions/smallrye-reactive-messaging/deployment/pom.xml @@ -68,7 +68,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/spring-cache/deployment/pom.xml b/extensions/spring-cache/deployment/pom.xml index 3651930e3ed81..ff2ef48954010 100644 --- a/extensions/spring-cache/deployment/pom.xml +++ b/extensions/spring-cache/deployment/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/spring-cloud-config-client/runtime/pom.xml b/extensions/spring-cloud-config-client/runtime/pom.xml index 3ce10e3d3c56f..3f40fc5756be3 100644 --- a/extensions/spring-cloud-config-client/runtime/pom.xml +++ b/extensions/spring-cloud-config-client/runtime/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/spring-data-jpa/deployment/pom.xml b/extensions/spring-data-jpa/deployment/pom.xml index a37901e4d8e67..c91e926d811a7 100644 --- a/extensions/spring-data-jpa/deployment/pom.xml +++ b/extensions/spring-data-jpa/deployment/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/spring-data-rest/deployment/pom.xml b/extensions/spring-data-rest/deployment/pom.xml index aad013b6304fd..a014ec7f48cae 100644 --- a/extensions/spring-data-rest/deployment/pom.xml +++ b/extensions/spring-data-rest/deployment/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/spring-di/deployment/pom.xml b/extensions/spring-di/deployment/pom.xml index 1c205a5a8a753..5ec8f9afcdad2 100644 --- a/extensions/spring-di/deployment/pom.xml +++ b/extensions/spring-di/deployment/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/spring-scheduled/deployment/pom.xml b/extensions/spring-scheduled/deployment/pom.xml index f723a49e98c87..2ab10914605cb 100644 --- a/extensions/spring-scheduled/deployment/pom.xml +++ b/extensions/spring-scheduled/deployment/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/spring-security/deployment/pom.xml b/extensions/spring-security/deployment/pom.xml index 883f98a0ffe09..8605f85a994fb 100644 --- a/extensions/spring-security/deployment/pom.xml +++ b/extensions/spring-security/deployment/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/spring-web/resteasy-classic/tests/pom.xml b/extensions/spring-web/resteasy-classic/tests/pom.xml index 6388acc7d5c13..21466b5e34937 100644 --- a/extensions/spring-web/resteasy-classic/tests/pom.xml +++ b/extensions/spring-web/resteasy-classic/tests/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/spring-web/resteasy-reactive/deployment/pom.xml b/extensions/spring-web/resteasy-reactive/deployment/pom.xml index 4d4df3ebf8e21..c2e360b9b761e 100644 --- a/extensions/spring-web/resteasy-reactive/deployment/pom.xml +++ b/extensions/spring-web/resteasy-reactive/deployment/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/spring-web/resteasy-reactive/tests/pom.xml b/extensions/spring-web/resteasy-reactive/tests/pom.xml index ae2f087e56e6d..3b260a7ef4328 100644 --- a/extensions/spring-web/resteasy-reactive/tests/pom.xml +++ b/extensions/spring-web/resteasy-reactive/tests/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/swagger-ui/deployment/pom.xml b/extensions/swagger-ui/deployment/pom.xml index ccf9d505b2c7e..b0b107a6050d2 100644 --- a/extensions/swagger-ui/deployment/pom.xml +++ b/extensions/swagger-ui/deployment/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/tls-registry/deployment/pom.xml b/extensions/tls-registry/deployment/pom.xml index 35fd92664cad5..b917db9005f50 100644 --- a/extensions/tls-registry/deployment/pom.xml +++ b/extensions/tls-registry/deployment/pom.xml @@ -44,12 +44,12 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/undertow/deployment/pom.xml b/extensions/undertow/deployment/pom.xml index 1c7a5c575b87c..3438bfd5f0c7b 100644 --- a/extensions/undertow/deployment/pom.xml +++ b/extensions/undertow/deployment/pom.xml @@ -59,7 +59,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/vertx-graphql/deployment/pom.xml b/extensions/vertx-graphql/deployment/pom.xml index be1a3e162d3c5..d12b67850fa05 100644 --- a/extensions/vertx-graphql/deployment/pom.xml +++ b/extensions/vertx-graphql/deployment/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/vertx-http/deployment/pom.xml b/extensions/vertx-http/deployment/pom.xml index a83c13c900268..1d212e5902de5 100644 --- a/extensions/vertx-http/deployment/pom.xml +++ b/extensions/vertx-http/deployment/pom.xml @@ -72,12 +72,12 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/extensions/vertx/deployment/pom.xml b/extensions/vertx/deployment/pom.xml index 2a20d69ccaa36..517be8a03a7d1 100644 --- a/extensions/vertx/deployment/pom.xml +++ b/extensions/vertx/deployment/pom.xml @@ -51,7 +51,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/virtual-threads/runtime/pom.xml b/extensions/virtual-threads/runtime/pom.xml index 693d72542e6b9..70670eda7100a 100644 --- a/extensions/virtual-threads/runtime/pom.xml +++ b/extensions/virtual-threads/runtime/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/web-dependency-locator/deployment/pom.xml b/extensions/web-dependency-locator/deployment/pom.xml index 1bc3ce715940f..7d39d9953e0a2 100644 --- a/extensions/web-dependency-locator/deployment/pom.xml +++ b/extensions/web-dependency-locator/deployment/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/websockets-next/deployment/pom.xml b/extensions/websockets-next/deployment/pom.xml index 27678964c0895..204fb00c9fa89 100644 --- a/extensions/websockets-next/deployment/pom.xml +++ b/extensions/websockets-next/deployment/pom.xml @@ -55,7 +55,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/websockets/client/deployment/pom.xml b/extensions/websockets/client/deployment/pom.xml index 9b61a1c37c51c..9cc94f3c1c82b 100644 --- a/extensions/websockets/client/deployment/pom.xml +++ b/extensions/websockets/client/deployment/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/extensions/websockets/server/deployment/pom.xml b/extensions/websockets/server/deployment/pom.xml index b4eea0ff7c9aa..a7eb7a1f76006 100644 --- a/extensions/websockets/server/deployment/pom.xml +++ b/extensions/websockets/server/deployment/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/independent-projects/arc/pom.xml b/independent-projects/arc/pom.xml index 462f1fa6fbe78..8df15983a0ced 100644 --- a/independent-projects/arc/pom.xml +++ b/independent-projects/arc/pom.xml @@ -53,7 +53,7 @@ 2.14.0 3.27.6 - 5.13.4 + 6.0.1 2.2.21 1.10.2 5.20.0 @@ -163,7 +163,7 @@ import - + org.junit junit-bom diff --git a/independent-projects/bootstrap/maven-resolver/src/test/resources/modules-in-profiles/integration-tests/rest-tests/pom.xml b/independent-projects/bootstrap/maven-resolver/src/test/resources/modules-in-profiles/integration-tests/rest-tests/pom.xml index c76dc44ac166c..50a51bcf1a0ba 100644 --- a/independent-projects/bootstrap/maven-resolver/src/test/resources/modules-in-profiles/integration-tests/rest-tests/pom.xml +++ b/independent-projects/bootstrap/maven-resolver/src/test/resources/modules-in-profiles/integration-tests/rest-tests/pom.xml @@ -21,7 +21,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/independent-projects/bootstrap/pom.xml b/independent-projects/bootstrap/pom.xml index c515a9937e598..95294809651b5 100644 --- a/independent-projects/bootstrap/pom.xml +++ b/independent-projects/bootstrap/pom.xml @@ -40,7 +40,7 @@ 3.27.6 0.9.5 3.6.1.Final - 5.13.4 + 6.0.1 3.9.11 0.9.0.M4 3.15.1 diff --git a/independent-projects/enforcer-rules/src/main/resources/enforcer-rules/quarkus-banned-dependencies-test.xml b/independent-projects/enforcer-rules/src/main/resources/enforcer-rules/quarkus-banned-dependencies-test.xml index 4ee8f7c5d3c59..5e4c955a74cec 100644 --- a/independent-projects/enforcer-rules/src/main/resources/enforcer-rules/quarkus-banned-dependencies-test.xml +++ b/independent-projects/enforcer-rules/src/main/resources/enforcer-rules/quarkus-banned-dependencies-test.xml @@ -23,7 +23,7 @@ org.junit.jupiter:*:*:*:test - Found JUnit 5 dependencies with wrong scope: + Found JUnit Jupiter dependencies with wrong scope: \ No newline at end of file diff --git a/independent-projects/extension-maven-plugin/pom.xml b/independent-projects/extension-maven-plugin/pom.xml index 8b98a62da764a..2aef9c406a378 100644 --- a/independent-projects/extension-maven-plugin/pom.xml +++ b/independent-projects/extension-maven-plugin/pom.xml @@ -39,7 +39,7 @@ 3.9.11 2.20.1 1.5.3 - 5.13.4 + 6.0.1 5.20.0 @@ -231,7 +231,7 @@ import pom - + org.junit junit-bom diff --git a/independent-projects/junit5-virtual-threads/pom.xml b/independent-projects/junit5-virtual-threads/pom.xml index cc8c0d5129af9..25b585cf13231 100644 --- a/independent-projects/junit5-virtual-threads/pom.xml +++ b/independent-projects/junit5-virtual-threads/pom.xml @@ -14,7 +14,7 @@ io.quarkus.junit5 junit5-virtual-threads - Quarkus - JUnit 5 Extension - Virtual Threads + Quarkus - JUnit Jupiter Extension - Virtual Threads Module that allows detecting virtual threads pinning https://github.com/quarkusio/quarkus @@ -44,7 +44,7 @@ 3.5.3 2.14.0 - 5.13.4 + 6.0.1 3.27.6 @@ -58,7 +58,7 @@ import - + org.junit junit-bom diff --git a/independent-projects/junit5-virtual-threads/src/test/java/io/quarkus/test/junit5/virtual/internal/VirtualThreadExtensionTest.java b/independent-projects/junit5-virtual-threads/src/test/java/io/quarkus/test/junit5/virtual/internal/VirtualThreadExtensionTest.java index 2be329d4ad7ca..73527b0bc073e 100644 --- a/independent-projects/junit5-virtual-threads/src/test/java/io/quarkus/test/junit5/virtual/internal/VirtualThreadExtensionTest.java +++ b/independent-projects/junit5-virtual-threads/src/test/java/io/quarkus/test/junit5/virtual/internal/VirtualThreadExtensionTest.java @@ -13,6 +13,7 @@ import java.util.concurrent.ConcurrentHashMap; import java.util.function.Function; +import org.jspecify.annotations.Nullable; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInstance; @@ -195,13 +196,13 @@ public Optional getConfigurationParameter(String s) { } @Override - public Optional getConfigurationParameter(String s, Function function) { + public Optional getConfigurationParameter(String key, + Function transformer) { return Optional.empty(); } @Override public void publishReportEntry(Map map) { - } @Override @@ -209,6 +210,11 @@ public TestStore getStore(Namespace namespace) { return store; } + @Override + public Store getStore(StoreScope scope, Namespace namespace) { + return store; + } + @Override public ExecutionMode getExecutionMode() { return ExecutionMode.SAME_THREAD; @@ -229,12 +235,11 @@ public void publishFile(String name, MediaType mediaType, ThrowingConsumer } @Override - public void publishDirectory(String name, ThrowingConsumer action) { + public void publishFile(String name, org.junit.jupiter.api.MediaType mediaType, ThrowingConsumer action) { } @Override - public Store getStore(StoreScope scope, Namespace namespace) { - return null; + public void publishDirectory(String name, ThrowingConsumer action) { } } @@ -276,15 +281,29 @@ public V get(Object o, Class aClass) { } @Override - @SuppressWarnings("unchecked") - public Object getOrComputeIfAbsent(K key, Function function) { - return store.computeIfAbsent(key, o -> function.apply((K) o)); + public V getOrDefault(Object key, Class requiredType, V defaultValue) { + return requiredType.cast(store.getOrDefault(key, defaultValue)); } @Override - @SuppressWarnings("unchecked") - public V getOrComputeIfAbsent(K key, Function function, Class aClass) { - return aClass.cast(store.computeIfAbsent(key, o -> function.apply((K) o))); + public @Nullable Object getOrComputeIfAbsent(K key, Function defaultCreator) { + return store.computeIfAbsent(key, o -> defaultCreator.apply((K) o)); + } + + @Override + public Object computeIfAbsent(K key, Function defaultCreator) { + return store.computeIfAbsent(key, o -> defaultCreator.apply((K) o)); + } + + @Override + public @Nullable V getOrComputeIfAbsent(K key, Function defaultCreator, + Class requiredType) { + return requiredType.cast(store.computeIfAbsent(key, o -> defaultCreator.apply((K) o))); + } + + @Override + public V computeIfAbsent(K key, Function defaultCreator, Class requiredType) { + return requiredType.cast(store.computeIfAbsent(key, o -> defaultCreator.apply((K) o))); } @Override diff --git a/independent-projects/qute/pom.xml b/independent-projects/qute/pom.xml index 3991345c1733a..49644dcb8c8e2 100644 --- a/independent-projects/qute/pom.xml +++ b/independent-projects/qute/pom.xml @@ -38,7 +38,7 @@ UTF-8 - 5.13.4 + 6.0.1 3.27.6 3.5.3 2.0.0.Beta10 @@ -71,7 +71,7 @@ import - + org.junit junit-bom diff --git a/independent-projects/resteasy-reactive/pom.xml b/independent-projects/resteasy-reactive/pom.xml index 99c2bc3b1b825..0ef0aa0ed7ab7 100644 --- a/independent-projects/resteasy-reactive/pom.xml +++ b/independent-projects/resteasy-reactive/pom.xml @@ -46,7 +46,7 @@ 4.1.0 3.5.3 1.17.6 - 5.13.4 + 6.0.1 3.9.11 3.27.6 3.6.1.Final @@ -262,7 +262,7 @@ pom - + org.junit junit-bom diff --git a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus-extension/code/extension-base/java/deployment/pom.tpl.qute.xml b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus-extension/code/extension-base/java/deployment/pom.tpl.qute.xml index 83e3cf1eb8451..be10976c7185f 100644 --- a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus-extension/code/extension-base/java/deployment/pom.tpl.qute.xml +++ b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus-extension/code/extension-base/java/deployment/pom.tpl.qute.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus-extension/code/integration-tests/java/integration-tests/pom.tpl.qute.xml b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus-extension/code/integration-tests/java/integration-tests/pom.tpl.qute.xml index 1db2b1840b7a9..eab7254d1b8cd 100644 --- a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus-extension/code/integration-tests/java/integration-tests/pom.tpl.qute.xml +++ b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus-extension/code/integration-tests/java/integration-tests/pom.tpl.qute.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/gradle-kotlin-dsl/base/build-layout.include.qute b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/gradle-kotlin-dsl/base/build-layout.include.qute index f7c1fea500561..8122edd9d1ca3 100644 --- a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/gradle-kotlin-dsl/base/build-layout.include.qute +++ b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/gradle-kotlin-dsl/base/build-layout.include.qute @@ -36,7 +36,7 @@ dependencies { {#for dep in dependencies} implementation("{dep}") {/for} - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") {#for dep in test-dependencies} testImplementation("{dep}") {/for} diff --git a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/gradle/base/build-layout.include.qute b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/gradle/base/build-layout.include.qute index 118cc470eefce..99b3dae2b4bea 100644 --- a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/gradle/base/build-layout.include.qute +++ b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/gradle/base/build-layout.include.qute @@ -32,7 +32,7 @@ dependencies { {#for dep in dependencies} implementation '{dep}' {/for} - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' {#for dep in test-dependencies} testImplementation '{dep}' {/for} diff --git a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/maven/base/pom.tpl.qute.xml b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/maven/base/pom.tpl.qute.xml index 612d7da2f0451..7c53d869ca404 100644 --- a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/maven/base/pom.tpl.qute.xml +++ b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/buildtool/maven/base/pom.tpl.qute.xml @@ -103,7 +103,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test {#each test-dependencies} diff --git a/independent-projects/tools/devtools-testing/src/main/java/io/quarkus/devtools/testing/registry/client/TestRegistryClientBuilder.java b/independent-projects/tools/devtools-testing/src/main/java/io/quarkus/devtools/testing/registry/client/TestRegistryClientBuilder.java index f474755c2a7b8..2b720788d3db0 100644 --- a/independent-projects/tools/devtools-testing/src/main/java/io/quarkus/devtools/testing/registry/client/TestRegistryClientBuilder.java +++ b/independent-projects/tools/devtools-testing/src/main/java/io/quarkus/devtools/testing/registry/client/TestRegistryClientBuilder.java @@ -825,7 +825,7 @@ public TestPlatformCatalogMemberBuilder addDefaultCodestartExtensions() { Dependency dep = new Dependency(); dep.setGroupId("io.quarkus"); - dep.setArtifactId("quarkus-junit5"); + dep.setArtifactId("quarkus-junit-jupiter"); dep.setVersion(quarkusVersion); pom.getDependencyManagement().addDependency(dep); diff --git a/independent-projects/tools/devtools-testing/src/test/resources/__snapshots__/QuarkusCodestartGenerationTest/generateDefault/pom.xml b/independent-projects/tools/devtools-testing/src/test/resources/__snapshots__/QuarkusCodestartGenerationTest/generateDefault/pom.xml index 9278f02098380..421e5c30948a8 100644 --- a/independent-projects/tools/devtools-testing/src/test/resources/__snapshots__/QuarkusCodestartGenerationTest/generateDefault/pom.xml +++ b/independent-projects/tools/devtools-testing/src/test/resources/__snapshots__/QuarkusCodestartGenerationTest/generateDefault/pom.xml @@ -36,7 +36,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/independent-projects/tools/devtools-testing/src/test/resources/__snapshots__/QuarkusCodestartGenerationTest/generateMavenWithCustomDep/pom.xml b/independent-projects/tools/devtools-testing/src/test/resources/__snapshots__/QuarkusCodestartGenerationTest/generateMavenWithCustomDep/pom.xml index 265ad3cf16782..9f7a2af095c8b 100644 --- a/independent-projects/tools/devtools-testing/src/test/resources/__snapshots__/QuarkusCodestartGenerationTest/generateMavenWithCustomDep/pom.xml +++ b/independent-projects/tools/devtools-testing/src/test/resources/__snapshots__/QuarkusCodestartGenerationTest/generateMavenWithCustomDep/pom.xml @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/independent-projects/tools/pom.xml b/independent-projects/tools/pom.xml index 7acc8b811cb0e..92bbd19f82157 100644 --- a/independent-projects/tools/pom.xml +++ b/independent-projects/tools/pom.xml @@ -53,7 +53,7 @@ 3.27.6 2.20.1 4.1.0 - 5.13.4 + 6.0.1 1.28.0 3.6.1.Final 5.20.0 @@ -102,7 +102,7 @@ import - + org.junit junit-bom diff --git a/integration-tests/amazon-lambda-http-resteasy-reactive/pom.xml b/integration-tests/amazon-lambda-http-resteasy-reactive/pom.xml index 1037b6d3d9329..6c36ec4d4adb3 100644 --- a/integration-tests/amazon-lambda-http-resteasy-reactive/pom.xml +++ b/integration-tests/amazon-lambda-http-resteasy-reactive/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/amazon-lambda-http/pom.xml b/integration-tests/amazon-lambda-http/pom.xml index 2d797af3d764b..c9caf246fd223 100644 --- a/integration-tests/amazon-lambda-http/pom.xml +++ b/integration-tests/amazon-lambda-http/pom.xml @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/amazon-lambda-rest-funqy/pom.xml b/integration-tests/amazon-lambda-rest-funqy/pom.xml index 62edff0bf212e..2b44a4a24a3bf 100644 --- a/integration-tests/amazon-lambda-rest-funqy/pom.xml +++ b/integration-tests/amazon-lambda-rest-funqy/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/amazon-lambda-rest-reactive-routes/pom.xml b/integration-tests/amazon-lambda-rest-reactive-routes/pom.xml index 60207c326ebdd..26aeb2e0588f8 100644 --- a/integration-tests/amazon-lambda-rest-reactive-routes/pom.xml +++ b/integration-tests/amazon-lambda-rest-reactive-routes/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/amazon-lambda-rest-resteasy-reactive/pom.xml b/integration-tests/amazon-lambda-rest-resteasy-reactive/pom.xml index aa09da904da27..71fd6590ed79d 100644 --- a/integration-tests/amazon-lambda-rest-resteasy-reactive/pom.xml +++ b/integration-tests/amazon-lambda-rest-resteasy-reactive/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/amazon-lambda-rest-servlet/pom.xml b/integration-tests/amazon-lambda-rest-servlet/pom.xml index 9ab3bdd6096ee..eaf7ac27bf633 100644 --- a/integration-tests/amazon-lambda-rest-servlet/pom.xml +++ b/integration-tests/amazon-lambda-rest-servlet/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/amazon-lambda-s3event/pom.xml b/integration-tests/amazon-lambda-s3event/pom.xml index b1e32c841f182..5bf2de295e190 100644 --- a/integration-tests/amazon-lambda-s3event/pom.xml +++ b/integration-tests/amazon-lambda-s3event/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/amazon-lambda-stream-handler/pom.xml b/integration-tests/amazon-lambda-stream-handler/pom.xml index 8493c54cc79a2..0295a95193383 100644 --- a/integration-tests/amazon-lambda-stream-handler/pom.xml +++ b/integration-tests/amazon-lambda-stream-handler/pom.xml @@ -21,7 +21,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/amazon-lambda/pom.xml b/integration-tests/amazon-lambda/pom.xml index 3194a0670c7f4..1c1f703eafcf5 100644 --- a/integration-tests/amazon-lambda/pom.xml +++ b/integration-tests/amazon-lambda/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/avro-reload/pom.xml b/integration-tests/avro-reload/pom.xml index 9aec94a838dc9..874f1776e9a99 100644 --- a/integration-tests/avro-reload/pom.xml +++ b/integration-tests/avro-reload/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/awt-packaging/pom.xml b/integration-tests/awt-packaging/pom.xml index c4556216a7b28..abab1cfd611c1 100644 --- a/integration-tests/awt-packaging/pom.xml +++ b/integration-tests/awt-packaging/pom.xml @@ -33,12 +33,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/integration-tests/awt/pom.xml b/integration-tests/awt/pom.xml index aacda1d852a3e..740db3ff4f586 100644 --- a/integration-tests/awt/pom.xml +++ b/integration-tests/awt/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/bouncycastle-fips-jsse/pom.xml b/integration-tests/bouncycastle-fips-jsse/pom.xml index 43d17b35ab833..1e3de0dda6494 100644 --- a/integration-tests/bouncycastle-fips-jsse/pom.xml +++ b/integration-tests/bouncycastle-fips-jsse/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/bouncycastle-fips/pom.xml b/integration-tests/bouncycastle-fips/pom.xml index 3a3945fb9ac29..e7e35843ea21c 100644 --- a/integration-tests/bouncycastle-fips/pom.xml +++ b/integration-tests/bouncycastle-fips/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/bouncycastle-jsse/pom.xml b/integration-tests/bouncycastle-jsse/pom.xml index 300b22890ea06..23033e89735df 100644 --- a/integration-tests/bouncycastle-jsse/pom.xml +++ b/integration-tests/bouncycastle-jsse/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/bouncycastle/pom.xml b/integration-tests/bouncycastle/pom.xml index 0b8b35df24130..c48fbd30e1dc6 100644 --- a/integration-tests/bouncycastle/pom.xml +++ b/integration-tests/bouncycastle/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/cache-multiple-backends/pom.xml b/integration-tests/cache-multiple-backends/pom.xml index b0c1747fc31a6..f477c8360f802 100644 --- a/integration-tests/cache-multiple-backends/pom.xml +++ b/integration-tests/cache-multiple-backends/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/cache/pom.xml b/integration-tests/cache/pom.xml index 7480d012166b2..71410ea7e52a2 100644 --- a/integration-tests/cache/pom.xml +++ b/integration-tests/cache/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/command-mode/pom.xml b/integration-tests/command-mode/pom.xml index 683b95a882f57..887466810325c 100644 --- a/integration-tests/command-mode/pom.xml +++ b/integration-tests/command-mode/pom.xml @@ -35,12 +35,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/compose-devservices/pom.xml b/integration-tests/compose-devservices/pom.xml index efa16e800337b..4faf5cba4cb94 100644 --- a/integration-tests/compose-devservices/pom.xml +++ b/integration-tests/compose-devservices/pom.xml @@ -59,7 +59,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/container-image/maven-invoker-way/src/it/container-build-docker/pom.xml b/integration-tests/container-image/maven-invoker-way/src/it/container-build-docker/pom.xml index 3afc45c3557ab..5e0ca449f6ca9 100644 --- a/integration-tests/container-image/maven-invoker-way/src/it/container-build-docker/pom.xml +++ b/integration-tests/container-image/maven-invoker-way/src/it/container-build-docker/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib-appcds/pom.xml b/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib-appcds/pom.xml index 480724f5cabb7..7bb60287b684e 100644 --- a/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib-appcds/pom.xml +++ b/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib-appcds/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib-inherit/pom.xml b/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib-inherit/pom.xml index d6dac3dce1b80..419d23720d8cc 100644 --- a/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib-inherit/pom.xml +++ b/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib-inherit/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib/pom.xml b/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib/pom.xml index 316ae23698a1e..2866e9760e875 100644 --- a/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib/pom.xml +++ b/integration-tests/container-image/maven-invoker-way/src/it/container-build-jib/pom.xml @@ -47,7 +47,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/container-image/maven-invoker-way/src/it/container-build-multiple-tags-docker/pom.xml b/integration-tests/container-image/maven-invoker-way/src/it/container-build-multiple-tags-docker/pom.xml index 715b928fa7b32..1545bb6610f8d 100644 --- a/integration-tests/container-image/maven-invoker-way/src/it/container-build-multiple-tags-docker/pom.xml +++ b/integration-tests/container-image/maven-invoker-way/src/it/container-build-multiple-tags-docker/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/container-image/maven-invoker-way/src/it/container-build-multiple-tags-jib/pom.xml b/integration-tests/container-image/maven-invoker-way/src/it/container-build-multiple-tags-jib/pom.xml index d00629eebbe22..95cae48f72ab5 100644 --- a/integration-tests/container-image/maven-invoker-way/src/it/container-build-multiple-tags-jib/pom.xml +++ b/integration-tests/container-image/maven-invoker-way/src/it/container-build-multiple-tags-jib/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/container-image/maven-invoker-way/src/it/container-native-main/pom.xml b/integration-tests/container-image/maven-invoker-way/src/it/container-native-main/pom.xml index ccc112de4db0f..308f1d263da91 100644 --- a/integration-tests/container-image/maven-invoker-way/src/it/container-native-main/pom.xml +++ b/integration-tests/container-image/maven-invoker-way/src/it/container-native-main/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/container-image/quarkus-standard-way/pom.xml b/integration-tests/container-image/quarkus-standard-way/pom.xml index eeff5e1a2fe9f..23f3f41c4a9b8 100644 --- a/integration-tests/container-image/quarkus-standard-way/pom.xml +++ b/integration-tests/container-image/quarkus-standard-way/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test @@ -47,7 +47,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/devmode/pom.xml b/integration-tests/devmode/pom.xml index 56bd0c0fa32a8..f16de29bd8ce8 100644 --- a/integration-tests/devmode/pom.xml +++ b/integration-tests/devmode/pom.xml @@ -86,20 +86,20 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test - io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-component + quarkus-junit-jupiter-component test diff --git a/integration-tests/devtools-registry-client/pom.xml b/integration-tests/devtools-registry-client/pom.xml index 41f50d45d0201..0c5310d0098f1 100644 --- a/integration-tests/devtools-registry-client/pom.xml +++ b/integration-tests/devtools-registry-client/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/devtools/pom.xml b/integration-tests/devtools/pom.xml index 4c16999a91e3b..90cdc140ff76c 100644 --- a/integration-tests/devtools/pom.xml +++ b/integration-tests/devtools/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testGradleContent/build.gradle b/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testGradleContent/build.gradle index 1a7c504c536d9..c2cd64f0033be 100644 --- a/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testGradleContent/build.gradle +++ b/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testGradleContent/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8' implementation 'io.quarkus:quarkus-arc' implementation 'io.quarkus:quarkus-rest' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testGradleKotlinContent/build.gradle.kts b/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testGradleKotlinContent/build.gradle.kts index f60af26470e28..050266b1ab642 100644 --- a/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testGradleKotlinContent/build.gradle.kts +++ b/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testGradleKotlinContent/build.gradle.kts @@ -21,7 +21,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-rest") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testMavenContent/pom.xml b/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testMavenContent/pom.xml index a940ef7539813..2927c0bf14f6a 100644 --- a/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testMavenContent/pom.xml +++ b/integration-tests/devtools/src/test/resources/__snapshots__/KotlinSerializationCodestartTest/testMavenContent/pom.xml @@ -49,7 +49,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/elasticsearch-java-client/pom.xml b/integration-tests/elasticsearch-java-client/pom.xml index bc8c6349e4590..fbce86cc3f441 100644 --- a/integration-tests/elasticsearch-java-client/pom.xml +++ b/integration-tests/elasticsearch-java-client/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/elasticsearch-rest-client/pom.xml b/integration-tests/elasticsearch-rest-client/pom.xml index 7c5624252c87c..9e4152448da90 100644 --- a/integration-tests/elasticsearch-rest-client/pom.xml +++ b/integration-tests/elasticsearch-rest-client/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/elytron-resteasy-reactive/pom.xml b/integration-tests/elytron-resteasy-reactive/pom.xml index 1230ab601162a..548f61d04b3bd 100644 --- a/integration-tests/elytron-resteasy-reactive/pom.xml +++ b/integration-tests/elytron-resteasy-reactive/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/elytron-resteasy/pom.xml b/integration-tests/elytron-resteasy/pom.xml index d1acb501541b7..308e4e5bfe285 100644 --- a/integration-tests/elytron-resteasy/pom.xml +++ b/integration-tests/elytron-resteasy/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/elytron-security-jdbc/pom.xml b/integration-tests/elytron-security-jdbc/pom.xml index dd88dda824f47..b1046d615e12d 100644 --- a/integration-tests/elytron-security-jdbc/pom.xml +++ b/integration-tests/elytron-security-jdbc/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/elytron-security-ldap/pom.xml b/integration-tests/elytron-security-ldap/pom.xml index 62fae013207a2..622c832c519a4 100644 --- a/integration-tests/elytron-security-ldap/pom.xml +++ b/integration-tests/elytron-security-ldap/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/elytron-security-oauth2/pom.xml b/integration-tests/elytron-security-oauth2/pom.xml index ef85223a17c24..e0dee837c6678 100644 --- a/integration-tests/elytron-security-oauth2/pom.xml +++ b/integration-tests/elytron-security-oauth2/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/elytron-security/pom.xml b/integration-tests/elytron-security/pom.xml index 36b3a9ca66088..06fdfa9b38e4f 100644 --- a/integration-tests/elytron-security/pom.xml +++ b/integration-tests/elytron-security/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/elytron-undertow/pom.xml b/integration-tests/elytron-undertow/pom.xml index 4111e03fee8fd..80e9eb26d9a06 100644 --- a/integration-tests/elytron-undertow/pom.xml +++ b/integration-tests/elytron-undertow/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/flyway/pom.xml b/integration-tests/flyway/pom.xml index f3e8edfd37802..5c1acb5fcf1d4 100644 --- a/integration-tests/flyway/pom.xml +++ b/integration-tests/flyway/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/funqy-amazon-lambda/pom.xml b/integration-tests/funqy-amazon-lambda/pom.xml index 3b9310bc5c225..f6841b6eab2fc 100644 --- a/integration-tests/funqy-amazon-lambda/pom.xml +++ b/integration-tests/funqy-amazon-lambda/pom.xml @@ -24,12 +24,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/funqy-google-cloud-functions/pom.xml b/integration-tests/funqy-google-cloud-functions/pom.xml index 0a35c83c9320e..9b3999432678c 100644 --- a/integration-tests/funqy-google-cloud-functions/pom.xml +++ b/integration-tests/funqy-google-cloud-functions/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/google-cloud-functions-http/pom.xml b/integration-tests/google-cloud-functions-http/pom.xml index 20ed75ceb2b2a..0bd70510b1d71 100644 --- a/integration-tests/google-cloud-functions-http/pom.xml +++ b/integration-tests/google-cloud-functions-http/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/google-cloud-functions/pom.xml b/integration-tests/google-cloud-functions/pom.xml index a7a1afd40fafa..60a05d0233acb 100644 --- a/integration-tests/google-cloud-functions/pom.xml +++ b/integration-tests/google-cloud-functions/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/gradle/pom.xml b/integration-tests/gradle/pom.xml index 727a53586884b..29add67cff26f 100644 --- a/integration-tests/gradle/pom.xml +++ b/integration-tests/gradle/pom.xml @@ -134,15 +134,15 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter io.quarkus - quarkus-junit5-component + quarkus-junit-jupiter-component io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal io.quarkus diff --git a/integration-tests/gradle/src/main/resources/add-remove-extension-single-module-kts/build.gradle.kts b/integration-tests/gradle/src/main/resources/add-remove-extension-single-module-kts/build.gradle.kts index 73bf12728325f..0ee49face00e4 100644 --- a/integration-tests/gradle/src/main/resources/add-remove-extension-single-module-kts/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/add-remove-extension-single-module-kts/build.gradle.kts @@ -21,7 +21,7 @@ dependencies { implementation(enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")) implementation("io.quarkus:quarkus-resteasy") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/add-remove-extension-single-module/build.gradle b/integration-tests/gradle/src/main/resources/add-remove-extension-single-module/build.gradle index 1ec1ffdfe0f19..bf1a3c81686d0 100644 --- a/integration-tests/gradle/src/main/resources/add-remove-extension-single-module/build.gradle +++ b/integration-tests/gradle/src/main/resources/add-remove-extension-single-module/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/additional-source-sets/build.gradle b/integration-tests/gradle/src/main/resources/additional-source-sets/build.gradle index 42ab6c130dbad..c950e2f3662b9 100644 --- a/integration-tests/gradle/src/main/resources/additional-source-sets/build.gradle +++ b/integration-tests/gradle/src/main/resources/additional-source-sets/build.gradle @@ -16,7 +16,7 @@ repositories { dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation "io.quarkus:quarkus-arc" - testImplementation "io.quarkus:quarkus-junit5" + testImplementation "io.quarkus:quarkus-junit-jupiter" } sourceSets { diff --git a/integration-tests/gradle/src/main/resources/annotation-processor-multi-module/build.gradle b/integration-tests/gradle/src/main/resources/annotation-processor-multi-module/build.gradle index 24f5c3425225c..5ec599b3bb349 100644 --- a/integration-tests/gradle/src/main/resources/annotation-processor-multi-module/build.gradle +++ b/integration-tests/gradle/src/main/resources/annotation-processor-multi-module/build.gradle @@ -42,7 +42,7 @@ subprojects { implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") diff --git a/integration-tests/gradle/src/main/resources/annotation-processor-simple-module/build.gradle b/integration-tests/gradle/src/main/resources/annotation-processor-simple-module/build.gradle index f807c9dada26d..966e2df44b94d 100644 --- a/integration-tests/gradle/src/main/resources/annotation-processor-simple-module/build.gradle +++ b/integration-tests/gradle/src/main/resources/annotation-processor-simple-module/build.gradle @@ -31,7 +31,7 @@ dependencies { annotationProcessor "org.mapstruct:mapstruct-processor:${mapstructVersion}" - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") diff --git a/integration-tests/gradle/src/main/resources/basic-java-library-module/application/build.gradle b/integration-tests/gradle/src/main/resources/basic-java-library-module/application/build.gradle index 0150cf471dedd..b361fe18693e5 100644 --- a/integration-tests/gradle/src/main/resources/basic-java-library-module/application/build.gradle +++ b/integration-tests/gradle/src/main/resources/basic-java-library-module/application/build.gradle @@ -19,7 +19,7 @@ dependencies { implementation project(':library') - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/basic-java-platform-module/application/build.gradle b/integration-tests/gradle/src/main/resources/basic-java-platform-module/application/build.gradle index e774ba76b1b6c..62846a2b7e42e 100644 --- a/integration-tests/gradle/src/main/resources/basic-java-platform-module/application/build.gradle +++ b/integration-tests/gradle/src/main/resources/basic-java-platform-module/application/build.gradle @@ -18,7 +18,7 @@ dependencies { implementation 'io.quarkus:quarkus-resteasy' implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/basic-multi-module-project-jacoco/build.gradle b/integration-tests/gradle/src/main/resources/basic-multi-module-project-jacoco/build.gradle index b7942ad0948bd..f285eb79f3946 100644 --- a/integration-tests/gradle/src/main/resources/basic-multi-module-project-jacoco/build.gradle +++ b/integration-tests/gradle/src/main/resources/basic-multi-module-project-jacoco/build.gradle @@ -42,7 +42,7 @@ subprojects { implementation 'io.quarkus:quarkus-rest' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") diff --git a/integration-tests/gradle/src/main/resources/basic-multi-module-project-test-setup/build.gradle b/integration-tests/gradle/src/main/resources/basic-multi-module-project-test-setup/build.gradle index 1dfaeb6a0dfbe..b11893508de86 100644 --- a/integration-tests/gradle/src/main/resources/basic-multi-module-project-test-setup/build.gradle +++ b/integration-tests/gradle/src/main/resources/basic-multi-module-project-test-setup/build.gradle @@ -45,7 +45,7 @@ subprojects { implementation 'io.quarkus:quarkus-arc' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") diff --git a/integration-tests/gradle/src/main/resources/basic-multi-module-project/build.gradle b/integration-tests/gradle/src/main/resources/basic-multi-module-project/build.gradle index 24f5c3425225c..5ec599b3bb349 100644 --- a/integration-tests/gradle/src/main/resources/basic-multi-module-project/build.gradle +++ b/integration-tests/gradle/src/main/resources/basic-multi-module-project/build.gradle @@ -42,7 +42,7 @@ subprojects { implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") diff --git a/integration-tests/gradle/src/main/resources/bean-in-testsources-project/build.gradle b/integration-tests/gradle/src/main/resources/bean-in-testsources-project/build.gradle index eddad434a61ce..c6b23d679d7a0 100644 --- a/integration-tests/gradle/src/main/resources/bean-in-testsources-project/build.gradle +++ b/integration-tests/gradle/src/main/resources/bean-in-testsources-project/build.gradle @@ -20,7 +20,7 @@ dependencies { implementation 'io.quarkus:quarkus-resteasy' implementation 'io.quarkus:quarkus-kotlin' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/build-configuration/with-application-properties/build.gradle b/integration-tests/gradle/src/main/resources/build-configuration/with-application-properties/build.gradle index 748dba45083b6..115fff4ef5372 100644 --- a/integration-tests/gradle/src/main/resources/build-configuration/with-application-properties/build.gradle +++ b/integration-tests/gradle/src/main/resources/build-configuration/with-application-properties/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/build-configuration/with-build-configuration/build.gradle b/integration-tests/gradle/src/main/resources/build-configuration/with-build-configuration/build.gradle index 4bebe9013b8da..d06eecb91d3b8 100644 --- a/integration-tests/gradle/src/main/resources/build-configuration/with-build-configuration/build.gradle +++ b/integration-tests/gradle/src/main/resources/build-configuration/with-build-configuration/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/build-configuration/without-configuration/build.gradle b/integration-tests/gradle/src/main/resources/build-configuration/without-configuration/build.gradle index 1ec1ffdfe0f19..bf1a3c81686d0 100644 --- a/integration-tests/gradle/src/main/resources/build-configuration/without-configuration/build.gradle +++ b/integration-tests/gradle/src/main/resources/build-configuration/without-configuration/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/compile-only-lombok/build.gradle b/integration-tests/gradle/src/main/resources/compile-only-lombok/build.gradle index ac0371f3eb5fd..af2299a26ad41 100644 --- a/integration-tests/gradle/src/main/resources/compile-only-lombok/build.gradle +++ b/integration-tests/gradle/src/main/resources/compile-only-lombok/build.gradle @@ -27,7 +27,7 @@ dependencies { annotationProcessor "org.hibernate.orm:hibernate-processor" annotationProcessor enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/composite-project-with-dependencies/gradle-dao/build.gradle b/integration-tests/gradle/src/main/resources/composite-project-with-dependencies/gradle-dao/build.gradle index 5a1c23b61f466..ce14ada8f6dea 100644 --- a/integration-tests/gradle/src/main/resources/composite-project-with-dependencies/gradle-dao/build.gradle +++ b/integration-tests/gradle/src/main/resources/composite-project-with-dependencies/gradle-dao/build.gradle @@ -19,7 +19,7 @@ dependencies { implementation 'io.quarkus:quarkus-jdbc-h2' implementation 'io.quarkus:quarkus-arc' implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/composite-project-with-dependencies/gradle-rest/build.gradle b/integration-tests/gradle/src/main/resources/composite-project-with-dependencies/gradle-rest/build.gradle index 319213dd3be0f..c761c8585d8b9 100644 --- a/integration-tests/gradle/src/main/resources/composite-project-with-dependencies/gradle-rest/build.gradle +++ b/integration-tests/gradle/src/main/resources/composite-project-with-dependencies/gradle-rest/build.gradle @@ -19,7 +19,7 @@ dependencies { implementation 'io.quarkus:quarkus-resteasy-jackson' implementation 'io.quarkus:quarkus-arc' implementation 'org.acme.gradle.multi:gradle-dao:1.0.0-SNAPSHOT' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies-kotlin/build.gradle.kts b/integration-tests/gradle/src/main/resources/conditional-dependencies-kotlin/build.gradle.kts index 264c71a3e0cff..f01fea1a894fd 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies-kotlin/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies-kotlin/build.gradle.kts @@ -26,7 +26,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-hibernate-validator") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/conditional-test-project/runner-with-exclude/build.gradle b/integration-tests/gradle/src/main/resources/conditional-test-project/runner-with-exclude/build.gradle index 15c7407c62aa1..9766b878dcea3 100644 --- a/integration-tests/gradle/src/main/resources/conditional-test-project/runner-with-exclude/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-test-project/runner-with-exclude/build.gradle @@ -24,6 +24,6 @@ dependencies { } implementation 'org.acme:ext-c:1.0-SNAPSHOT' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/conditional-test-project/runner-with-explicit-import/build.gradle b/integration-tests/gradle/src/main/resources/conditional-test-project/runner-with-explicit-import/build.gradle index 45d6b6b687441..684bff614d574 100644 --- a/integration-tests/gradle/src/main/resources/conditional-test-project/runner-with-explicit-import/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-test-project/runner-with-explicit-import/build.gradle @@ -23,6 +23,6 @@ dependencies { implementation 'org.acme:ext-c:1.0-SNAPSHOT' implementation 'org.acme:ext-e:1.0-SNAPSHOT' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/conditional-test-project/runner/build.gradle b/integration-tests/gradle/src/main/resources/conditional-test-project/runner/build.gradle index e62a8d1c3476b..208fa466c10b9 100644 --- a/integration-tests/gradle/src/main/resources/conditional-test-project/runner/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-test-project/runner/build.gradle @@ -23,6 +23,6 @@ dependencies { implementation 'org.acme:ext-c:1.0-SNAPSHOT' implementation 'org.acme:ext-t:1.0-SNAPSHOT' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/conditional-test-project/scenario-two/build.gradle b/integration-tests/gradle/src/main/resources/conditional-test-project/scenario-two/build.gradle index 70526b6fb7c89..293e86c054922 100644 --- a/integration-tests/gradle/src/main/resources/conditional-test-project/scenario-two/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-test-project/scenario-two/build.gradle @@ -23,6 +23,6 @@ dependencies { implementation 'org.acme:ext-l:1.0-SNAPSHOT' implementation 'org.acme:ext-m:1.0-SNAPSHOT' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/configuration-inheritance-project/build.gradle b/integration-tests/gradle/src/main/resources/configuration-inheritance-project/build.gradle index e671d255b5ccd..1cba45d55e8f5 100644 --- a/integration-tests/gradle/src/main/resources/configuration-inheritance-project/build.gradle +++ b/integration-tests/gradle/src/main/resources/configuration-inheritance-project/build.gradle @@ -20,7 +20,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' implementation 'org.apache.commons:commons-collections4:4.4' diff --git a/integration-tests/gradle/src/main/resources/custom-filesystem-provider/build.gradle b/integration-tests/gradle/src/main/resources/custom-filesystem-provider/build.gradle index 7a2145a3c0717..8d70951c651ff 100644 --- a/integration-tests/gradle/src/main/resources/custom-filesystem-provider/build.gradle +++ b/integration-tests/gradle/src/main/resources/custom-filesystem-provider/build.gradle @@ -44,7 +44,7 @@ subprojects { implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") diff --git a/integration-tests/gradle/src/main/resources/custom-jar-classifier-dependency/runner/build.gradle b/integration-tests/gradle/src/main/resources/custom-jar-classifier-dependency/runner/build.gradle index 4d07f44e1b0fc..235f46782fb1e 100644 --- a/integration-tests/gradle/src/main/resources/custom-jar-classifier-dependency/runner/build.gradle +++ b/integration-tests/gradle/src/main/resources/custom-jar-classifier-dependency/runner/build.gradle @@ -13,7 +13,7 @@ dependencies { implementation 'io.quarkus:quarkus-rest' implementation 'io.quarkus:quarkus-arc' implementation project(':project-a') - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/custom-jar-classifier/build.gradle b/integration-tests/gradle/src/main/resources/custom-jar-classifier/build.gradle index b4b8fe8cbbabd..58c57cce443d8 100644 --- a/integration-tests/gradle/src/main/resources/custom-jar-classifier/build.gradle +++ b/integration-tests/gradle/src/main/resources/custom-jar-classifier/build.gradle @@ -18,7 +18,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-rest' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/custom-java-native-sourceset-module/build.gradle b/integration-tests/gradle/src/main/resources/custom-java-native-sourceset-module/build.gradle index 7582e05d77868..2981bdf64a7ef 100644 --- a/integration-tests/gradle/src/main/resources/custom-java-native-sourceset-module/build.gradle +++ b/integration-tests/gradle/src/main/resources/custom-java-native-sourceset-module/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/dev-deps-leak-into-prod-48992/build.gradle b/integration-tests/gradle/src/main/resources/dev-deps-leak-into-prod-48992/build.gradle index 6c2196ff38330..3838dabbdc3ff 100644 --- a/integration-tests/gradle/src/main/resources/dev-deps-leak-into-prod-48992/build.gradle +++ b/integration-tests/gradle/src/main/resources/dev-deps-leak-into-prod-48992/build.gradle @@ -21,7 +21,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-arc' implementation 'io.quarkus:quarkus-rest' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-enforced/build.gradle b/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-enforced/build.gradle index 12332eeaa7c7a..dd793364e3381 100644 --- a/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-enforced/build.gradle +++ b/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-enforced/build.gradle @@ -20,6 +20,6 @@ dependencies { implementation enforcedPlatform("org.enforcing.deps:test-bom:1.0.0") implementation 'io.quarkus:quarkus-rest' implementation 'org.enforcing.deps:ext-a:1.0-SNAPSHOT' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-excluded-1/build.gradle b/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-excluded-1/build.gradle index 118f9641c6b0e..8239554f2f60e 100644 --- a/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-excluded-1/build.gradle +++ b/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-excluded-1/build.gradle @@ -20,7 +20,7 @@ dependencies { implementation enforcedPlatform("org.enforcing.deps:test-bom:1.0.0") implementation 'io.quarkus:quarkus-rest' implementation 'org.enforcing.deps:ext-a:1.0-SNAPSHOT' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-excluded-2/build.gradle b/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-excluded-2/build.gradle index 1b157d042718e..0cd44d0a14e34 100644 --- a/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-excluded-2/build.gradle +++ b/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner-excluded-2/build.gradle @@ -20,6 +20,6 @@ dependencies { implementation enforcedPlatform("org.enforcing.deps:test-bom-with-exclusion:1.0.0") implementation 'io.quarkus:quarkus-rest' implementation 'org.enforcing.deps:ext-a:1.0-SNAPSHOT' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner/build.gradle b/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner/build.gradle index ac0e616c76f5b..a917c23062a0b 100644 --- a/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner/build.gradle +++ b/integration-tests/gradle/src/main/resources/enforcing-platform-for-conditional-deps/consumer-project/runner/build.gradle @@ -19,6 +19,6 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-rest' implementation 'org.enforcing.deps:ext-a:1.0-SNAPSHOT' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/extensions/simple-extension/deployment/build.gradle b/integration-tests/gradle/src/main/resources/extensions/simple-extension/deployment/build.gradle index a628f7880298e..14d7628bf57b1 100644 --- a/integration-tests/gradle/src/main/resources/extensions/simple-extension/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/extensions/simple-extension/deployment/build.gradle @@ -11,7 +11,7 @@ dependencies { implementation 'io.quarkus:quarkus-core-deployment' implementation 'io.quarkus:quarkus-undertow-deployment' - testImplementation 'io.quarkus:quarkus-junit5-internal' + testImplementation 'io.quarkus:quarkus-junit-jupiter-internal' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/grpc-multi-module-no-java/application/build.gradle.kts b/integration-tests/gradle/src/main/resources/grpc-multi-module-no-java/application/build.gradle.kts index 2787624908d2e..07bfbba95c0a9 100644 --- a/integration-tests/gradle/src/main/resources/grpc-multi-module-no-java/application/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/grpc-multi-module-no-java/application/build.gradle.kts @@ -13,6 +13,6 @@ dependencies { implementation("io.quarkus:quarkus-grpc") compileOnly("com.google.protobuf:protobuf-kotlin") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/grpc-multi-module-project/build.gradle b/integration-tests/gradle/src/main/resources/grpc-multi-module-project/build.gradle index ae9221f911f42..8aa403cbddf90 100644 --- a/integration-tests/gradle/src/main/resources/grpc-multi-module-project/build.gradle +++ b/integration-tests/gradle/src/main/resources/grpc-multi-module-project/build.gradle @@ -42,7 +42,7 @@ subprojects { implementation 'io.quarkus:quarkus-rest' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") diff --git a/integration-tests/gradle/src/main/resources/included-kotlin-build/acme-subproject-nested/acme-nested/build.gradle.kts b/integration-tests/gradle/src/main/resources/included-kotlin-build/acme-subproject-nested/acme-nested/build.gradle.kts index ef631aefd8953..73b7710e3c213 100644 --- a/integration-tests/gradle/src/main/resources/included-kotlin-build/acme-subproject-nested/acme-nested/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/included-kotlin-build/acme-subproject-nested/acme-nested/build.gradle.kts @@ -24,7 +24,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-rest") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/included-kotlin-build/build.gradle.kts b/integration-tests/gradle/src/main/resources/included-kotlin-build/build.gradle.kts index 09e73af5633a3..46fd939aef188 100644 --- a/integration-tests/gradle/src/main/resources/included-kotlin-build/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/included-kotlin-build/build.gradle.kts @@ -27,7 +27,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-rest") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/included-kotlin-kmp-build/build.gradle.kts b/integration-tests/gradle/src/main/resources/included-kotlin-kmp-build/build.gradle.kts index 42c718c4040dc..d0a67512fae2b 100644 --- a/integration-tests/gradle/src/main/resources/included-kotlin-kmp-build/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/included-kotlin-kmp-build/build.gradle.kts @@ -26,7 +26,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-rest") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/inject-bean-from-test-config/application/build.gradle b/integration-tests/gradle/src/main/resources/inject-bean-from-test-config/application/build.gradle index 54e20a0b53feb..89d955fa363cc 100644 --- a/integration-tests/gradle/src/main/resources/inject-bean-from-test-config/application/build.gradle +++ b/integration-tests/gradle/src/main/resources/inject-bean-from-test-config/application/build.gradle @@ -19,7 +19,7 @@ dependencies { implementation project(':library') - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' testImplementation project(path: ':library', configuration: 'tests') } diff --git a/integration-tests/gradle/src/main/resources/inject-bean-from-test-config/library/build.gradle b/integration-tests/gradle/src/main/resources/inject-bean-from-test-config/library/build.gradle index 3ef8670227ae2..351c1da4c4d8b 100644 --- a/integration-tests/gradle/src/main/resources/inject-bean-from-test-config/library/build.gradle +++ b/integration-tests/gradle/src/main/resources/inject-bean-from-test-config/library/build.gradle @@ -16,7 +16,7 @@ dependencies { api enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") api 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/inject-quarkus-app-properties/build.gradle b/integration-tests/gradle/src/main/resources/inject-quarkus-app-properties/build.gradle index 004177ff381a1..932d0abc62014 100644 --- a/integration-tests/gradle/src/main/resources/inject-quarkus-app-properties/build.gradle +++ b/integration-tests/gradle/src/main/resources/inject-quarkus-app-properties/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/it-test-basic-project/build.gradle b/integration-tests/gradle/src/main/resources/it-test-basic-project/build.gradle index 004177ff381a1..932d0abc62014 100644 --- a/integration-tests/gradle/src/main/resources/it-test-basic-project/build.gradle +++ b/integration-tests/gradle/src/main/resources/it-test-basic-project/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/jandex-included-build-kordamp/acme-subproject-nested/acme-nested/build.gradle.kts b/integration-tests/gradle/src/main/resources/jandex-included-build-kordamp/acme-subproject-nested/acme-nested/build.gradle.kts index 753e52b6a5f32..d7a6ba7717b20 100644 --- a/integration-tests/gradle/src/main/resources/jandex-included-build-kordamp/acme-subproject-nested/acme-nested/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/jandex-included-build-kordamp/acme-subproject-nested/acme-nested/build.gradle.kts @@ -21,7 +21,7 @@ dependencies { implementation(enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")) implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-rest") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/jandex-included-build-kordamp/build.gradle.kts b/integration-tests/gradle/src/main/resources/jandex-included-build-kordamp/build.gradle.kts index f499d30311583..2bf3b7d6577af 100644 --- a/integration-tests/gradle/src/main/resources/jandex-included-build-kordamp/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/jandex-included-build-kordamp/build.gradle.kts @@ -22,7 +22,7 @@ dependencies { implementation(enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")) implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-rest") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/java-platform-with-eager-resolution-project/build.gradle.kts b/integration-tests/gradle/src/main/resources/java-platform-with-eager-resolution-project/build.gradle.kts index adc10c534b09f..34e2a4bc15308 100644 --- a/integration-tests/gradle/src/main/resources/java-platform-with-eager-resolution-project/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/java-platform-with-eager-resolution-project/build.gradle.kts @@ -13,7 +13,7 @@ dependencies { implementation("io.quarkus:quarkus-rest") implementation("io.quarkus:quarkus-arc") implementation(enforcedPlatform(project(":library"))) - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/kotlin-grpc-project/build.gradle b/integration-tests/gradle/src/main/resources/kotlin-grpc-project/build.gradle index f1fc8236cd36f..8378bd7370ef9 100644 --- a/integration-tests/gradle/src/main/resources/kotlin-grpc-project/build.gradle +++ b/integration-tests/gradle/src/main/resources/kotlin-grpc-project/build.gradle @@ -23,7 +23,7 @@ dependencies { implementation 'io.quarkus:quarkus-resteasy' implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:kotlin-extensions' } diff --git a/integration-tests/gradle/src/main/resources/kotlin-jacoco/build.gradle.kts b/integration-tests/gradle/src/main/resources/kotlin-jacoco/build.gradle.kts index 92cb3b37106ab..1ed4c37af3a07 100644 --- a/integration-tests/gradle/src/main/resources/kotlin-jacoco/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/kotlin-jacoco/build.gradle.kts @@ -20,7 +20,7 @@ dependencies { implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-rest") testImplementation("io.quarkus:quarkus-jacoco") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/kotlin-ksp/build.gradle.kts b/integration-tests/gradle/src/main/resources/kotlin-ksp/build.gradle.kts index 32ac159b25709..12be00d81bf18 100644 --- a/integration-tests/gradle/src/main/resources/kotlin-ksp/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/kotlin-ksp/build.gradle.kts @@ -19,7 +19,7 @@ dependencies { implementation("io.quarkus:quarkus-kotlin") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation("io.quarkus:quarkus-rest") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/kotlin-multiplatform-module/build.gradle.kts b/integration-tests/gradle/src/main/resources/kotlin-multiplatform-module/build.gradle.kts index b6b5599847d7a..8f6feae035681 100644 --- a/integration-tests/gradle/src/main/resources/kotlin-multiplatform-module/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/kotlin-multiplatform-module/build.gradle.kts @@ -26,7 +26,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-rest") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/list-extension-single-module/build.gradle b/integration-tests/gradle/src/main/resources/list-extension-single-module/build.gradle index b26a9a3ba9e41..9223727a7b79a 100644 --- a/integration-tests/gradle/src/main/resources/list-extension-single-module/build.gradle +++ b/integration-tests/gradle/src/main/resources/list-extension-single-module/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/maven-exclusion-in-extension-dependency/build.gradle b/integration-tests/gradle/src/main/resources/maven-exclusion-in-extension-dependency/build.gradle index ae80ba08a28c1..6e4a66d1d8721 100644 --- a/integration-tests/gradle/src/main/resources/maven-exclusion-in-extension-dependency/build.gradle +++ b/integration-tests/gradle/src/main/resources/maven-exclusion-in-extension-dependency/build.gradle @@ -20,7 +20,7 @@ dependencies { implementation 'io.quarkus:quarkus-reactive-pg-client' implementation 'io.quarkus:quarkus-arc' implementation 'io.quarkus:quarkus-rest' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/multi-composite-build-extensions-project/application/build.gradle b/integration-tests/gradle/src/main/resources/multi-composite-build-extensions-project/application/build.gradle index 5a58c8f8a1eb1..771071ea084f9 100644 --- a/integration-tests/gradle/src/main/resources/multi-composite-build-extensions-project/application/build.gradle +++ b/integration-tests/gradle/src/main/resources/multi-composite-build-extensions-project/application/build.gradle @@ -21,7 +21,7 @@ dependencies { implementation ('org.acme.libs:libraryA') implementation ('org.acme.extensions:another-example-extension') - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/multi-module-kotlin-project/build.gradle b/integration-tests/gradle/src/main/resources/multi-module-kotlin-project/build.gradle index 0cf8235e7b3a9..edac947a97627 100644 --- a/integration-tests/gradle/src/main/resources/multi-module-kotlin-project/build.gradle +++ b/integration-tests/gradle/src/main/resources/multi-module-kotlin-project/build.gradle @@ -39,7 +39,7 @@ allprojects { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8' implementation 'io.quarkus:quarkus-kotlin' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:kotlin-extensions' } diff --git a/integration-tests/gradle/src/main/resources/multi-module-parent-dependency/app/build.gradle b/integration-tests/gradle/src/main/resources/multi-module-parent-dependency/app/build.gradle index 55cfc3ca83469..487191917a809 100644 --- a/integration-tests/gradle/src/main/resources/multi-module-parent-dependency/app/build.gradle +++ b/integration-tests/gradle/src/main/resources/multi-module-parent-dependency/app/build.gradle @@ -18,7 +18,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/multi-module-with-empty-module/build.gradle.kts b/integration-tests/gradle/src/main/resources/multi-module-with-empty-module/build.gradle.kts index 87f48bdc76cdd..d3bb06f831de7 100644 --- a/integration-tests/gradle/src/main/resources/multi-module-with-empty-module/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/multi-module-with-empty-module/build.gradle.kts @@ -35,7 +35,7 @@ subprojects { dependencies { "implementation"(enforcedPlatform("$quarkusPlatformGroupId:$quarkusPlatformArtifactId:$quarkusPlatformVersion")) - "testImplementation"("io.quarkus:quarkus-junit5") + "testImplementation"("io.quarkus:quarkus-junit-jupiter") "testImplementation"("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/multi-module-with-lib-module/lib-mod/build.gradle.kts b/integration-tests/gradle/src/main/resources/multi-module-with-lib-module/lib-mod/build.gradle.kts index 2f278f53b3650..2c82ae354ee38 100644 --- a/integration-tests/gradle/src/main/resources/multi-module-with-lib-module/lib-mod/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/multi-module-with-lib-module/lib-mod/build.gradle.kts @@ -12,6 +12,6 @@ val quarkusPlatformVersion: String by project dependencies { "implementation"(enforcedPlatform("$quarkusPlatformGroupId:$quarkusPlatformArtifactId:$quarkusPlatformVersion")) implementation("io.quarkus:quarkus-rest") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") } diff --git a/integration-tests/gradle/src/main/resources/multi-module-with-lib-module/main-mod/build.gradle.kts b/integration-tests/gradle/src/main/resources/multi-module-with-lib-module/main-mod/build.gradle.kts index c48a7cb1fdae3..4bb0677eafe9b 100644 --- a/integration-tests/gradle/src/main/resources/multi-module-with-lib-module/main-mod/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/multi-module-with-lib-module/main-mod/build.gradle.kts @@ -15,7 +15,7 @@ dependencies { "implementation"(enforcedPlatform("$quarkusPlatformGroupId:$quarkusPlatformArtifactId:$quarkusPlatformVersion")) implementation("io.quarkus:quarkus-rest") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") testImplementation("io.rest-assured:rest-assured") implementation(project(":lib-mod")) } diff --git a/integration-tests/gradle/src/main/resources/multi-source-project/build.gradle b/integration-tests/gradle/src/main/resources/multi-source-project/build.gradle index d953a76e72c13..6a2adfab582be 100644 --- a/integration-tests/gradle/src/main/resources/multi-source-project/build.gradle +++ b/integration-tests/gradle/src/main/resources/multi-source-project/build.gradle @@ -21,7 +21,7 @@ dependencies { implementation 'io.quarkus:quarkus-resteasy' implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:kotlin-extensions' } diff --git a/integration-tests/gradle/src/main/resources/mutable-jar/build.gradle b/integration-tests/gradle/src/main/resources/mutable-jar/build.gradle index 1ec1ffdfe0f19..bf1a3c81686d0 100644 --- a/integration-tests/gradle/src/main/resources/mutable-jar/build.gradle +++ b/integration-tests/gradle/src/main/resources/mutable-jar/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/quarkus-component-test/build.gradle b/integration-tests/gradle/src/main/resources/quarkus-component-test/build.gradle index 5f1cfa1aefb14..af44656eafbdf 100644 --- a/integration-tests/gradle/src/main/resources/quarkus-component-test/build.gradle +++ b/integration-tests/gradle/src/main/resources/quarkus-component-test/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-arc' - testImplementation 'io.quarkus:quarkus-junit5-component' + testImplementation 'io.quarkus:quarkus-junit-jupiter-component' } group = 'org.acme' diff --git a/integration-tests/gradle/src/main/resources/system-props-as-build-time-config-source/application/build.gradle b/integration-tests/gradle/src/main/resources/system-props-as-build-time-config-source/application/build.gradle index 42a5ccf79056d..dd2051c57d596 100644 --- a/integration-tests/gradle/src/main/resources/system-props-as-build-time-config-source/application/build.gradle +++ b/integration-tests/gradle/src/main/resources/system-props-as-build-time-config-source/application/build.gradle @@ -19,7 +19,7 @@ dependencies { implementation 'io.quarkus:quarkus-rest' implementation ('org.acme.extensions:example-extension') - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/test-fixtures-client-exception-mapper/build.gradle.kts b/integration-tests/gradle/src/main/resources/test-fixtures-client-exception-mapper/build.gradle.kts index 91f967b70b147..0722411d69f09 100644 --- a/integration-tests/gradle/src/main/resources/test-fixtures-client-exception-mapper/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/test-fixtures-client-exception-mapper/build.gradle.kts @@ -16,7 +16,7 @@ val quarkusPlatformVersion: String by project dependencies { implementation(enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")) implementation("io.quarkus:quarkus-rest-client-jackson") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") } group = "org.example" diff --git a/integration-tests/gradle/src/main/resources/test-fixtures-module-with-package-private-parent/build.gradle b/integration-tests/gradle/src/main/resources/test-fixtures-module-with-package-private-parent/build.gradle index 7d9ee518d72dc..c61da3a5709c4 100644 --- a/integration-tests/gradle/src/main/resources/test-fixtures-module-with-package-private-parent/build.gradle +++ b/integration-tests/gradle/src/main/resources/test-fixtures-module-with-package-private-parent/build.gradle @@ -18,7 +18,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/test-fixtures-module/build.gradle b/integration-tests/gradle/src/main/resources/test-fixtures-module/build.gradle index 7d9ee518d72dc..c61da3a5709c4 100644 --- a/integration-tests/gradle/src/main/resources/test-fixtures-module/build.gradle +++ b/integration-tests/gradle/src/main/resources/test-fixtures-module/build.gradle @@ -18,7 +18,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/test-fixtures-multi-module/application/build.gradle b/integration-tests/gradle/src/main/resources/test-fixtures-multi-module/application/build.gradle index 816585dc52aa8..d1a4071dc0b57 100644 --- a/integration-tests/gradle/src/main/resources/test-fixtures-multi-module/application/build.gradle +++ b/integration-tests/gradle/src/main/resources/test-fixtures-multi-module/application/build.gradle @@ -19,7 +19,7 @@ dependencies { // Library-2 has to be dependency as implementation and test fixture implementation(project(':library-2')) - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' testImplementation(testFixtures(project(':library-2'))) } diff --git a/integration-tests/gradle/src/main/resources/test-fixtures-multi-module/library-2/build.gradle b/integration-tests/gradle/src/main/resources/test-fixtures-multi-module/library-2/build.gradle index 4cb25677a40f5..bfd983d637623 100644 --- a/integration-tests/gradle/src/main/resources/test-fixtures-multi-module/library-2/build.gradle +++ b/integration-tests/gradle/src/main/resources/test-fixtures-multi-module/library-2/build.gradle @@ -16,7 +16,7 @@ repositories { dependencies { testFixturesImplementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") - testFixturesImplementation 'io.quarkus:quarkus-junit5' + testFixturesImplementation 'io.quarkus:quarkus-junit-jupiter' // Library-1 has to be dependency as implementation and test fixture testFixturesImplementation(project(':library-1')) diff --git a/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/application/build.gradle b/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/application/build.gradle index eefc07de28ead..456d56989d3d3 100644 --- a/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/application/build.gradle +++ b/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/application/build.gradle @@ -6,7 +6,7 @@ dependencies { implementation project(":runtime") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") diff --git a/integration-tests/gradle/src/main/resources/test-resources-vs-main-resources/build.gradle b/integration-tests/gradle/src/main/resources/test-resources-vs-main-resources/build.gradle index 004177ff381a1..932d0abc62014 100644 --- a/integration-tests/gradle/src/main/resources/test-resources-vs-main-resources/build.gradle +++ b/integration-tests/gradle/src/main/resources/test-resources-vs-main-resources/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/gradle/src/main/resources/test-selection/build.gradle.kts b/integration-tests/gradle/src/main/resources/test-selection/build.gradle.kts index 7fbced9a7ff52..0ed39f5eb012d 100644 --- a/integration-tests/gradle/src/main/resources/test-selection/build.gradle.kts +++ b/integration-tests/gradle/src/main/resources/test-selection/build.gradle.kts @@ -22,7 +22,7 @@ dependencies { implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-vertx-http") - testImplementation("io.quarkus:quarkus-junit5") + testImplementation("io.quarkus:quarkus-junit-jupiter") } group = "com.example" diff --git a/integration-tests/gradle/src/main/resources/test-with-sidecar-module/my-module/build.gradle b/integration-tests/gradle/src/main/resources/test-with-sidecar-module/my-module/build.gradle index d8f5b7df31ff2..0ff1030c9148d 100644 --- a/integration-tests/gradle/src/main/resources/test-with-sidecar-module/my-module/build.gradle +++ b/integration-tests/gradle/src/main/resources/test-with-sidecar-module/my-module/build.gradle @@ -19,5 +19,5 @@ dependencies { implementation "io.quarkus:quarkus-arc" testImplementation project(":test-support") - testImplementation "io.quarkus:quarkus-junit5" + testImplementation "io.quarkus:quarkus-junit-jupiter" } diff --git a/integration-tests/gradle/src/main/resources/with-junit-properties-file/build.gradle b/integration-tests/gradle/src/main/resources/with-junit-properties-file/build.gradle index 4d5d34d764813..06931ff08a947 100644 --- a/integration-tests/gradle/src/main/resources/with-junit-properties-file/build.gradle +++ b/integration-tests/gradle/src/main/resources/with-junit-properties-file/build.gradle @@ -18,7 +18,7 @@ dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-resteasy' - testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-junit-jupiter' testImplementation 'io.rest-assured:rest-assured' } diff --git a/integration-tests/grpc-cli/pom.xml b/integration-tests/grpc-cli/pom.xml index 5ad42a85afacb..4b807553a3aa2 100644 --- a/integration-tests/grpc-cli/pom.xml +++ b/integration-tests/grpc-cli/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-descriptor-sets/pom.xml b/integration-tests/grpc-descriptor-sets/pom.xml index 69457d3be8a88..d2d5dde88e736 100644 --- a/integration-tests/grpc-descriptor-sets/pom.xml +++ b/integration-tests/grpc-descriptor-sets/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-exceptions/pom.xml b/integration-tests/grpc-exceptions/pom.xml index 601e2ce9aeb2a..596b61534403d 100644 --- a/integration-tests/grpc-exceptions/pom.xml +++ b/integration-tests/grpc-exceptions/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-external-proto-test/pom.xml b/integration-tests/grpc-external-proto-test/pom.xml index af2ce8888b4e2..843b96871d94f 100644 --- a/integration-tests/grpc-external-proto-test/pom.xml +++ b/integration-tests/grpc-external-proto-test/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-health/pom.xml b/integration-tests/grpc-health/pom.xml index d4293d0e3e1c4..07ca94cf653fb 100644 --- a/integration-tests/grpc-health/pom.xml +++ b/integration-tests/grpc-health/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/grpc-hibernate-reactive/pom.xml b/integration-tests/grpc-hibernate-reactive/pom.xml index bbe86471af698..a97f9cc7bc44e 100644 --- a/integration-tests/grpc-hibernate-reactive/pom.xml +++ b/integration-tests/grpc-hibernate-reactive/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-hibernate/pom.xml b/integration-tests/grpc-hibernate/pom.xml index 2f166746f0483..3f03c7bf60bd6 100644 --- a/integration-tests/grpc-hibernate/pom.xml +++ b/integration-tests/grpc-hibernate/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-inprocess/pom.xml b/integration-tests/grpc-inprocess/pom.xml index c032dd87a1a17..f0678b1812d4f 100644 --- a/integration-tests/grpc-inprocess/pom.xml +++ b/integration-tests/grpc-inprocess/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-interceptors/pom.xml b/integration-tests/grpc-interceptors/pom.xml index 5c8e740f5f7ce..faa008d5760a9 100644 --- a/integration-tests/grpc-interceptors/pom.xml +++ b/integration-tests/grpc-interceptors/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-mutual-auth/pom.xml b/integration-tests/grpc-mutual-auth/pom.xml index aad1397ff2caa..d2e1c54265dd0 100644 --- a/integration-tests/grpc-mutual-auth/pom.xml +++ b/integration-tests/grpc-mutual-auth/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-plain-text-gzip/pom.xml b/integration-tests/grpc-plain-text-gzip/pom.xml index a8558d9e6fe22..c1d7d55ab5bae 100644 --- a/integration-tests/grpc-plain-text-gzip/pom.xml +++ b/integration-tests/grpc-plain-text-gzip/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-plain-text-mutiny/pom.xml b/integration-tests/grpc-plain-text-mutiny/pom.xml index 7b29e6ba73059..a1c1a32bd00f4 100644 --- a/integration-tests/grpc-plain-text-mutiny/pom.xml +++ b/integration-tests/grpc-plain-text-mutiny/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -48,7 +48,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/integration-tests/grpc-proto-v2/pom.xml b/integration-tests/grpc-proto-v2/pom.xml index ade7f4a66d76b..be79ea90d1a72 100644 --- a/integration-tests/grpc-proto-v2/pom.xml +++ b/integration-tests/grpc-proto-v2/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-stork-response-time/pom.xml b/integration-tests/grpc-stork-response-time/pom.xml index 5bd800b8fc0bd..fd8822e5c688f 100644 --- a/integration-tests/grpc-stork-response-time/pom.xml +++ b/integration-tests/grpc-stork-response-time/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-stork-simple/pom.xml b/integration-tests/grpc-stork-simple/pom.xml index 7500fd12cc7ef..26282d4bd9c7b 100644 --- a/integration-tests/grpc-stork-simple/pom.xml +++ b/integration-tests/grpc-stork-simple/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-streaming/pom.xml b/integration-tests/grpc-streaming/pom.xml index 69d738f08283b..3625cd6748062 100644 --- a/integration-tests/grpc-streaming/pom.xml +++ b/integration-tests/grpc-streaming/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-test-random-port/pom.xml b/integration-tests/grpc-test-random-port/pom.xml index 254af0a50bc11..204fa88d7f737 100644 --- a/integration-tests/grpc-test-random-port/pom.xml +++ b/integration-tests/grpc-test-random-port/pom.xml @@ -20,7 +20,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-tls-p12/pom.xml b/integration-tests/grpc-tls-p12/pom.xml index 0e7a121943d7e..9147bf2d6835b 100644 --- a/integration-tests/grpc-tls-p12/pom.xml +++ b/integration-tests/grpc-tls-p12/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-tls/pom.xml b/integration-tests/grpc-tls/pom.xml index 16fdfe120501e..b78bdd3579e70 100644 --- a/integration-tests/grpc-tls/pom.xml +++ b/integration-tests/grpc-tls/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/grpc-vertx/pom.xml b/integration-tests/grpc-vertx/pom.xml index 45f1ccb4ccbe9..b2e8c729e4c56 100644 --- a/integration-tests/grpc-vertx/pom.xml +++ b/integration-tests/grpc-vertx/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-compatibility-5.6/mariadb/pom.xml b/integration-tests/hibernate-orm-compatibility-5.6/mariadb/pom.xml index c09b4da9c2d0d..5156321f59862 100644 --- a/integration-tests/hibernate-orm-compatibility-5.6/mariadb/pom.xml +++ b/integration-tests/hibernate-orm-compatibility-5.6/mariadb/pom.xml @@ -48,7 +48,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-compatibility-5.6/postgresql/pom.xml b/integration-tests/hibernate-orm-compatibility-5.6/postgresql/pom.xml index 1f17ef7fbab9f..7d2f16c3bdfb1 100644 --- a/integration-tests/hibernate-orm-compatibility-5.6/postgresql/pom.xml +++ b/integration-tests/hibernate-orm-compatibility-5.6/postgresql/pom.xml @@ -48,7 +48,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-data/pom.xml b/integration-tests/hibernate-orm-data/pom.xml index c5e78c63740cc..50f8703850e66 100644 --- a/integration-tests/hibernate-orm-data/pom.xml +++ b/integration-tests/hibernate-orm-data/pom.xml @@ -37,12 +37,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/hibernate-orm-envers/pom.xml b/integration-tests/hibernate-orm-envers/pom.xml index 2feb61c9872b4..3a0496841365e 100644 --- a/integration-tests/hibernate-orm-envers/pom.xml +++ b/integration-tests/hibernate-orm-envers/pom.xml @@ -36,7 +36,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-graphql-panache/pom.xml b/integration-tests/hibernate-orm-graphql-panache/pom.xml index f0dea0e9be140..aac736a706a07 100644 --- a/integration-tests/hibernate-orm-graphql-panache/pom.xml +++ b/integration-tests/hibernate-orm-graphql-panache/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-jpamodelgen/pom.xml b/integration-tests/hibernate-orm-jpamodelgen/pom.xml index 6385cca16c66a..eace52a2f60d5 100644 --- a/integration-tests/hibernate-orm-jpamodelgen/pom.xml +++ b/integration-tests/hibernate-orm-jpamodelgen/pom.xml @@ -37,12 +37,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/hibernate-orm-panache-kotlin/pom.xml b/integration-tests/hibernate-orm-panache-kotlin/pom.xml index bbffc72296c1f..f71ea9aa95354 100644 --- a/integration-tests/hibernate-orm-panache-kotlin/pom.xml +++ b/integration-tests/hibernate-orm-panache-kotlin/pom.xml @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-panache/pom.xml b/integration-tests/hibernate-orm-panache/pom.xml index 8daf3d2de244d..1683fbc53d135 100644 --- a/integration-tests/hibernate-orm-panache/pom.xml +++ b/integration-tests/hibernate-orm-panache/pom.xml @@ -64,12 +64,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/hibernate-orm-rest-data-panache/pom.xml b/integration-tests/hibernate-orm-rest-data-panache/pom.xml index 4ba0870fdf870..547a3eb144a69 100644 --- a/integration-tests/hibernate-orm-rest-data-panache/pom.xml +++ b/integration-tests/hibernate-orm-rest-data-panache/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-tenancy/connection-resolver-legacy-qualifiers/pom.xml b/integration-tests/hibernate-orm-tenancy/connection-resolver-legacy-qualifiers/pom.xml index 65f9d7fb4b99a..a806acde6fb5f 100644 --- a/integration-tests/hibernate-orm-tenancy/connection-resolver-legacy-qualifiers/pom.xml +++ b/integration-tests/hibernate-orm-tenancy/connection-resolver-legacy-qualifiers/pom.xml @@ -51,7 +51,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-tenancy/connection-resolver/pom.xml b/integration-tests/hibernate-orm-tenancy/connection-resolver/pom.xml index a6a7602c53965..3796e5a5d1627 100644 --- a/integration-tests/hibernate-orm-tenancy/connection-resolver/pom.xml +++ b/integration-tests/hibernate-orm-tenancy/connection-resolver/pom.xml @@ -49,7 +49,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-tenancy/datasource/pom.xml b/integration-tests/hibernate-orm-tenancy/datasource/pom.xml index 432e4b342aba5..dcd8d026acec9 100644 --- a/integration-tests/hibernate-orm-tenancy/datasource/pom.xml +++ b/integration-tests/hibernate-orm-tenancy/datasource/pom.xml @@ -51,7 +51,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-tenancy/discriminator/pom.xml b/integration-tests/hibernate-orm-tenancy/discriminator/pom.xml index 717941c2d5e1a..fa1cc3fb5f697 100644 --- a/integration-tests/hibernate-orm-tenancy/discriminator/pom.xml +++ b/integration-tests/hibernate-orm-tenancy/discriminator/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-tenancy/schema-mariadb/pom.xml b/integration-tests/hibernate-orm-tenancy/schema-mariadb/pom.xml index 788f485f567b7..64770a2888983 100644 --- a/integration-tests/hibernate-orm-tenancy/schema-mariadb/pom.xml +++ b/integration-tests/hibernate-orm-tenancy/schema-mariadb/pom.xml @@ -47,7 +47,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-orm-tenancy/schema/pom.xml b/integration-tests/hibernate-orm-tenancy/schema/pom.xml index f99e1a5ad600f..d541c45a96848 100644 --- a/integration-tests/hibernate-orm-tenancy/schema/pom.xml +++ b/integration-tests/hibernate-orm-tenancy/schema/pom.xml @@ -47,7 +47,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-reactive-db2/pom.xml b/integration-tests/hibernate-reactive-db2/pom.xml index 58c3c27762ba1..b3cda4884a354 100644 --- a/integration-tests/hibernate-reactive-db2/pom.xml +++ b/integration-tests/hibernate-reactive-db2/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-reactive-mariadb/pom.xml b/integration-tests/hibernate-reactive-mariadb/pom.xml index bef91b602ae50..0501a25dd118c 100644 --- a/integration-tests/hibernate-reactive-mariadb/pom.xml +++ b/integration-tests/hibernate-reactive-mariadb/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-reactive-mssql/pom.xml b/integration-tests/hibernate-reactive-mssql/pom.xml index 99c688ac285b5..a360b33d44315 100644 --- a/integration-tests/hibernate-reactive-mssql/pom.xml +++ b/integration-tests/hibernate-reactive-mssql/pom.xml @@ -30,12 +30,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/hibernate-reactive-mysql-agroal-flyway/pom.xml b/integration-tests/hibernate-reactive-mysql-agroal-flyway/pom.xml index aa989a4f2c630..cc2954f95ec36 100644 --- a/integration-tests/hibernate-reactive-mysql-agroal-flyway/pom.xml +++ b/integration-tests/hibernate-reactive-mysql-agroal-flyway/pom.xml @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-reactive-mysql/pom.xml b/integration-tests/hibernate-reactive-mysql/pom.xml index 4028293dd7ea9..98120f4d4941f 100644 --- a/integration-tests/hibernate-reactive-mysql/pom.xml +++ b/integration-tests/hibernate-reactive-mysql/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-reactive-oracle/pom.xml b/integration-tests/hibernate-reactive-oracle/pom.xml index 67e10d0d66740..b316a608e7870 100644 --- a/integration-tests/hibernate-reactive-oracle/pom.xml +++ b/integration-tests/hibernate-reactive-oracle/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-reactive-orm-compatibility/pom.xml b/integration-tests/hibernate-reactive-orm-compatibility/pom.xml index edef453491828..83630f3016039 100644 --- a/integration-tests/hibernate-reactive-orm-compatibility/pom.xml +++ b/integration-tests/hibernate-reactive-orm-compatibility/pom.xml @@ -48,7 +48,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-reactive-panache-kotlin/pom.xml b/integration-tests/hibernate-reactive-panache-kotlin/pom.xml index 14f3d179f58d8..43eb2ddc9007b 100644 --- a/integration-tests/hibernate-reactive-panache-kotlin/pom.xml +++ b/integration-tests/hibernate-reactive-panache-kotlin/pom.xml @@ -50,7 +50,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -60,7 +60,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/hibernate-reactive-panache/pom.xml b/integration-tests/hibernate-reactive-panache/pom.xml index 0c41f320ab89d..3507c2e124a8f 100644 --- a/integration-tests/hibernate-reactive-panache/pom.xml +++ b/integration-tests/hibernate-reactive-panache/pom.xml @@ -59,7 +59,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -69,7 +69,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/hibernate-reactive-postgresql/pom.xml b/integration-tests/hibernate-reactive-postgresql/pom.xml index 0c858cfb2b9a7..50d10ccf82b7b 100644 --- a/integration-tests/hibernate-reactive-postgresql/pom.xml +++ b/integration-tests/hibernate-reactive-postgresql/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-search-orm-elasticsearch-outbox-polling/pom.xml b/integration-tests/hibernate-search-orm-elasticsearch-outbox-polling/pom.xml index 8a971809a5f91..d034a0fc741c3 100644 --- a/integration-tests/hibernate-search-orm-elasticsearch-outbox-polling/pom.xml +++ b/integration-tests/hibernate-search-orm-elasticsearch-outbox-polling/pom.xml @@ -47,7 +47,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-search-orm-elasticsearch-tenancy/pom.xml b/integration-tests/hibernate-search-orm-elasticsearch-tenancy/pom.xml index d87ccc11f39db..d8742141406fd 100644 --- a/integration-tests/hibernate-search-orm-elasticsearch-tenancy/pom.xml +++ b/integration-tests/hibernate-search-orm-elasticsearch-tenancy/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-search-orm-elasticsearch/pom.xml b/integration-tests/hibernate-search-orm-elasticsearch/pom.xml index 37e7c2d2611d7..11db5da66d30d 100644 --- a/integration-tests/hibernate-search-orm-elasticsearch/pom.xml +++ b/integration-tests/hibernate-search-orm-elasticsearch/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-search-orm-opensearch/pom.xml b/integration-tests/hibernate-search-orm-opensearch/pom.xml index ea81abc4137ac..01fb30eb17ce3 100644 --- a/integration-tests/hibernate-search-orm-opensearch/pom.xml +++ b/integration-tests/hibernate-search-orm-opensearch/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-search-standalone-elasticsearch/pom.xml b/integration-tests/hibernate-search-standalone-elasticsearch/pom.xml index 0985b67313247..bf2c3e1d0050b 100644 --- a/integration-tests/hibernate-search-standalone-elasticsearch/pom.xml +++ b/integration-tests/hibernate-search-standalone-elasticsearch/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-search-standalone-opensearch/pom.xml b/integration-tests/hibernate-search-standalone-opensearch/pom.xml index 175e60f79c474..1668b81327924 100644 --- a/integration-tests/hibernate-search-standalone-opensearch/pom.xml +++ b/integration-tests/hibernate-search-standalone-opensearch/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/hibernate-validator-resteasy-reactive/pom.xml b/integration-tests/hibernate-validator-resteasy-reactive/pom.xml index 7cff86b97d15b..92a5009f8acd1 100644 --- a/integration-tests/hibernate-validator-resteasy-reactive/pom.xml +++ b/integration-tests/hibernate-validator-resteasy-reactive/pom.xml @@ -52,12 +52,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/hibernate-validator/pom.xml b/integration-tests/hibernate-validator/pom.xml index 7aa7c9dac6714..12cc0d1b3e608 100644 --- a/integration-tests/hibernate-validator/pom.xml +++ b/integration-tests/hibernate-validator/pom.xml @@ -48,12 +48,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/infinispan-cache-jpa/pom.xml b/integration-tests/infinispan-cache-jpa/pom.xml index 6aaa46558fe12..c22b7baebd53f 100644 --- a/integration-tests/infinispan-cache-jpa/pom.xml +++ b/integration-tests/infinispan-cache-jpa/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/infinispan-cache/pom.xml b/integration-tests/infinispan-cache/pom.xml index dde07306e0864..d6a3a361c7f6f 100644 --- a/integration-tests/infinispan-cache/pom.xml +++ b/integration-tests/infinispan-cache/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/infinispan-client/pom.xml b/integration-tests/infinispan-client/pom.xml index 1febec1b4217c..c52b807102bc0 100644 --- a/integration-tests/infinispan-client/pom.xml +++ b/integration-tests/infinispan-client/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -47,7 +47,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito org.assertj diff --git a/integration-tests/injectmock/pom.xml b/integration-tests/injectmock/pom.xml index 554a4e3deb5a1..0f15cadc39ce5 100644 --- a/integration-tests/injectmock/pom.xml +++ b/integration-tests/injectmock/pom.xml @@ -20,7 +20,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/integration-tests/istio/maven-invoker-way/pom.xml b/integration-tests/istio/maven-invoker-way/pom.xml index ebeeaeacfb9fb..b0945f8090aeb 100644 --- a/integration-tests/istio/maven-invoker-way/pom.xml +++ b/integration-tests/istio/maven-invoker-way/pom.xml @@ -199,7 +199,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter ${project.version} pom test diff --git a/integration-tests/istio/maven-invoker-way/src/it/xds-grpc/pom.xml b/integration-tests/istio/maven-invoker-way/src/it/xds-grpc/pom.xml index 38f71920863c4..60850fa49787a 100644 --- a/integration-tests/istio/maven-invoker-way/src/it/xds-grpc/pom.xml +++ b/integration-tests/istio/maven-invoker-way/src/it/xds-grpc/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/jackson/pom.xml b/integration-tests/jackson/pom.xml index 853f3aa344ab5..fd5b37b4070b1 100644 --- a/integration-tests/jackson/pom.xml +++ b/integration-tests/jackson/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/jaxb/pom.xml b/integration-tests/jaxb/pom.xml index d9f5f73cdfb16..4433872b090b0 100644 --- a/integration-tests/jaxb/pom.xml +++ b/integration-tests/jaxb/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/jaxp/pom.xml b/integration-tests/jaxp/pom.xml index 360e4760f95d6..e5d0421171bc9 100644 --- a/integration-tests/jaxp/pom.xml +++ b/integration-tests/jaxp/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/jfr-blocking/pom.xml b/integration-tests/jfr-blocking/pom.xml index e03928ff2b081..f7b8dab091713 100644 --- a/integration-tests/jfr-blocking/pom.xml +++ b/integration-tests/jfr-blocking/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/jfr-opentelemetry/pom.xml b/integration-tests/jfr-opentelemetry/pom.xml index bf77489f5e04b..87b224441dfd5 100644 --- a/integration-tests/jfr-opentelemetry/pom.xml +++ b/integration-tests/jfr-opentelemetry/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/jfr-reactive/pom.xml b/integration-tests/jfr-reactive/pom.xml index 05a39428fac58..f60e1c50e6836 100644 --- a/integration-tests/jfr-reactive/pom.xml +++ b/integration-tests/jfr-reactive/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/jpa-db2/pom.xml b/integration-tests/jpa-db2/pom.xml index 1b7ed8c202589..3bd508a28c9bf 100644 --- a/integration-tests/jpa-db2/pom.xml +++ b/integration-tests/jpa-db2/pom.xml @@ -29,12 +29,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jpa-h2-embedded/pom.xml b/integration-tests/jpa-h2-embedded/pom.xml index 47ee00d3d5c93..b5df7689e9f0f 100644 --- a/integration-tests/jpa-h2-embedded/pom.xml +++ b/integration-tests/jpa-h2-embedded/pom.xml @@ -32,12 +32,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jpa-h2/pom.xml b/integration-tests/jpa-h2/pom.xml index 072c2ca1c2b37..cdc91133598e1 100644 --- a/integration-tests/jpa-h2/pom.xml +++ b/integration-tests/jpa-h2/pom.xml @@ -37,12 +37,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jpa-mapping-xml/legacy-app/pom.xml b/integration-tests/jpa-mapping-xml/legacy-app/pom.xml index 0e8320c5a694b..bb210f40e189c 100644 --- a/integration-tests/jpa-mapping-xml/legacy-app/pom.xml +++ b/integration-tests/jpa-mapping-xml/legacy-app/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -60,7 +60,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jpa-mapping-xml/modern-app/pom.xml b/integration-tests/jpa-mapping-xml/modern-app/pom.xml index c5d1aa200a03a..c0a5f624e24d7 100644 --- a/integration-tests/jpa-mapping-xml/modern-app/pom.xml +++ b/integration-tests/jpa-mapping-xml/modern-app/pom.xml @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -61,7 +61,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jpa-mariadb/pom.xml b/integration-tests/jpa-mariadb/pom.xml index 02aaa57adc1e4..372c4b0e1578c 100644 --- a/integration-tests/jpa-mariadb/pom.xml +++ b/integration-tests/jpa-mariadb/pom.xml @@ -34,12 +34,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jpa-mssql/pom.xml b/integration-tests/jpa-mssql/pom.xml index 93980ab985759..7708ade4a57ac 100644 --- a/integration-tests/jpa-mssql/pom.xml +++ b/integration-tests/jpa-mssql/pom.xml @@ -33,12 +33,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jpa-mysql/pom.xml b/integration-tests/jpa-mysql/pom.xml index 2e31d5d98579b..cc16decb16e86 100644 --- a/integration-tests/jpa-mysql/pom.xml +++ b/integration-tests/jpa-mysql/pom.xml @@ -30,12 +30,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jpa-oracle/pom.xml b/integration-tests/jpa-oracle/pom.xml index c191f75d451c3..6871cd801219f 100644 --- a/integration-tests/jpa-oracle/pom.xml +++ b/integration-tests/jpa-oracle/pom.xml @@ -41,12 +41,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jpa-postgresql-withxml/pom.xml b/integration-tests/jpa-postgresql-withxml/pom.xml index b04d05c2909ab..ab19d7a1bc8ff 100644 --- a/integration-tests/jpa-postgresql-withxml/pom.xml +++ b/integration-tests/jpa-postgresql-withxml/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/jpa-postgresql/pom.xml b/integration-tests/jpa-postgresql/pom.xml index 75230114537dd..b94476097e266 100644 --- a/integration-tests/jpa-postgresql/pom.xml +++ b/integration-tests/jpa-postgresql/pom.xml @@ -34,12 +34,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jpa-without-entity/pom.xml b/integration-tests/jpa-without-entity/pom.xml index b46ab80064e4d..1759865b5c1ca 100644 --- a/integration-tests/jpa-without-entity/pom.xml +++ b/integration-tests/jpa-without-entity/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/jpa/pom.xml b/integration-tests/jpa/pom.xml index 097bdc5a9fc3b..58dd0cd41112a 100644 --- a/integration-tests/jpa/pom.xml +++ b/integration-tests/jpa/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -49,7 +49,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/jsonb/pom.xml b/integration-tests/jsonb/pom.xml index 7e708c0b00952..593884989b950 100644 --- a/integration-tests/jsonb/pom.xml +++ b/integration-tests/jsonb/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kafka-avro-apicurio2/pom.xml b/integration-tests/kafka-avro-apicurio2/pom.xml index 19398b353f8ba..2d40a73ab59ea 100644 --- a/integration-tests/kafka-avro-apicurio2/pom.xml +++ b/integration-tests/kafka-avro-apicurio2/pom.xml @@ -82,7 +82,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kafka-devservices/pom.xml b/integration-tests/kafka-devservices/pom.xml index d9aebdb2e9c4b..553885e118c38 100644 --- a/integration-tests/kafka-devservices/pom.xml +++ b/integration-tests/kafka-devservices/pom.xml @@ -54,12 +54,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/kafka-json-schema-apicurio2/pom.xml b/integration-tests/kafka-json-schema-apicurio2/pom.xml index f336c451d99e7..b46694a2909a6 100644 --- a/integration-tests/kafka-json-schema-apicurio2/pom.xml +++ b/integration-tests/kafka-json-schema-apicurio2/pom.xml @@ -77,7 +77,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kafka-oauth-keycloak/pom.xml b/integration-tests/kafka-oauth-keycloak/pom.xml index 43f19d3917acf..e2de9c32e8754 100644 --- a/integration-tests/kafka-oauth-keycloak/pom.xml +++ b/integration-tests/kafka-oauth-keycloak/pom.xml @@ -48,7 +48,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kafka-sasl-elytron/pom.xml b/integration-tests/kafka-sasl-elytron/pom.xml index 0aa1c18ec473b..6e420808575c4 100644 --- a/integration-tests/kafka-sasl-elytron/pom.xml +++ b/integration-tests/kafka-sasl-elytron/pom.xml @@ -49,7 +49,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kafka-sasl/pom.xml b/integration-tests/kafka-sasl/pom.xml index a9e30a9cc032b..944e6a92bae02 100644 --- a/integration-tests/kafka-sasl/pom.xml +++ b/integration-tests/kafka-sasl/pom.xml @@ -54,7 +54,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kafka-snappy/pom.xml b/integration-tests/kafka-snappy/pom.xml index 7baed5470f0a4..e8e126e1cd8b1 100644 --- a/integration-tests/kafka-snappy/pom.xml +++ b/integration-tests/kafka-snappy/pom.xml @@ -64,7 +64,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kafka-ssl/pom.xml b/integration-tests/kafka-ssl/pom.xml index 05c78f2330779..121e435cf152c 100644 --- a/integration-tests/kafka-ssl/pom.xml +++ b/integration-tests/kafka-ssl/pom.xml @@ -54,7 +54,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kafka-streams/pom.xml b/integration-tests/kafka-streams/pom.xml index 6cbaf4b71b8f6..69daf3349129a 100644 --- a/integration-tests/kafka-streams/pom.xml +++ b/integration-tests/kafka-streams/pom.xml @@ -54,7 +54,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kafka/pom.xml b/integration-tests/kafka/pom.xml index 1de5683cca54b..aea3fd3d80520 100644 --- a/integration-tests/kafka/pom.xml +++ b/integration-tests/kafka/pom.xml @@ -64,7 +64,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/keycloak-authorization/pom.xml b/integration-tests/keycloak-authorization/pom.xml index 81072b3593b76..00c8b437f4f3f 100644 --- a/integration-tests/keycloak-authorization/pom.xml +++ b/integration-tests/keycloak-authorization/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kotlin-maven-invoker/src/test/resources/projects/classic-kotlin/pom.xml b/integration-tests/kotlin-maven-invoker/src/test/resources/projects/classic-kotlin/pom.xml index 48df305cb1a8f..216928ab67188 100644 --- a/integration-tests/kotlin-maven-invoker/src/test/resources/projects/classic-kotlin/pom.xml +++ b/integration-tests/kotlin-maven-invoker/src/test/resources/projects/classic-kotlin/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kotlin-maven-invoker/src/test/resources/projects/kotlin-compiler-args/pom.xml b/integration-tests/kotlin-maven-invoker/src/test/resources/projects/kotlin-compiler-args/pom.xml index 4ecdc8df91ce4..7a470fdc441cd 100644 --- a/integration-tests/kotlin-maven-invoker/src/test/resources/projects/kotlin-compiler-args/pom.xml +++ b/integration-tests/kotlin-maven-invoker/src/test/resources/projects/kotlin-compiler-args/pom.xml @@ -48,7 +48,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kotlin/pom.xml b/integration-tests/kotlin/pom.xml index 1b06edc08ed3d..2076acb82e220 100644 --- a/integration-tests/kotlin/pom.xml +++ b/integration-tests/kotlin/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes-client-devservices/pom.xml b/integration-tests/kubernetes-client-devservices/pom.xml index d78c7c04966d5..136430603a4d6 100644 --- a/integration-tests/kubernetes-client-devservices/pom.xml +++ b/integration-tests/kubernetes-client-devservices/pom.xml @@ -21,7 +21,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes-client/pom.xml b/integration-tests/kubernetes-client/pom.xml index b6544bb95c4ae..5124af804bbda 100644 --- a/integration-tests/kubernetes-client/pom.xml +++ b/integration-tests/kubernetes-client/pom.xml @@ -51,12 +51,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/kubernetes-service-binding-jdbc/pom.xml b/integration-tests/kubernetes-service-binding-jdbc/pom.xml index 0b80b18aa192f..aeeb0dc3fe31c 100644 --- a/integration-tests/kubernetes-service-binding-jdbc/pom.xml +++ b/integration-tests/kubernetes-service-binding-jdbc/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes-service-binding-reactive/pom.xml b/integration-tests/kubernetes-service-binding-reactive/pom.xml index a715dc46915a4..018fbeb0ee6ae 100644 --- a/integration-tests/kubernetes-service-binding-reactive/pom.xml +++ b/integration-tests/kubernetes-service-binding-reactive/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/pom.xml b/integration-tests/kubernetes/maven-invoker-way/pom.xml index 582156af7b406..38f845e8d9109 100644 --- a/integration-tests/kubernetes/maven-invoker-way/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/pom.xml @@ -203,7 +203,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter ${project.version} pom test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/knative-jib-build-and-deploy/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/knative-jib-build-and-deploy/pom.xml index 013852297dd56..38c66393c55fd 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/knative-jib-build-and-deploy/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/knative-jib-build-and-deploy/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-docker-build-and-deploy-deployment/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-docker-build-and-deploy-deployment/pom.xml index ca1dfa7ee0f0f..01a02dc76cac2 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-docker-build-and-deploy-deployment/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-docker-build-and-deploy-deployment/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-docker-build-and-deploy-statefulset/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-docker-build-and-deploy-statefulset/pom.xml index 4886a40f31558..45169ac79e3c4 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-docker-build-and-deploy-statefulset/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-docker-build-and-deploy-statefulset/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-jib-build-and-deploy/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-jib-build-and-deploy/pom.xml index 72fee808ab714..c86fa12062ad7 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-jib-build-and-deploy/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-jib-build-and-deploy/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-existing-selectorless-manifest/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-existing-selectorless-manifest/pom.xml index 533c3ad5326ad..044b01b72f8be 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-existing-selectorless-manifest/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-existing-selectorless-manifest/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-grpc-same-server/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-grpc-same-server/pom.xml index df2dcb9d6b7d6..ecfc6d851059b 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-grpc-same-server/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-grpc-same-server/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-grpc/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-grpc/pom.xml index 7e0bfb3f2aaa7..33ad199c03e4e 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-grpc/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/kubernetes-with-grpc/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/minikube-with-existing-manifest/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/minikube-with-existing-manifest/pom.xml index ff89f4dfb1503..6e235e2314221 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/minikube-with-existing-manifest/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/minikube-with-existing-manifest/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-docker-build-and-deploy-deploymentconfig/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-docker-build-and-deploy-deploymentconfig/pom.xml index 74d9c3ea5dc63..e00211fe562f6 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-docker-build-and-deploy-deploymentconfig/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-docker-build-and-deploy-deploymentconfig/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-docker-build-and-deploy/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-docker-build-and-deploy/pom.xml index 1ed10dd126bf8..7954734716535 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-docker-build-and-deploy/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-docker-build-and-deploy/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-s2i-build-and-deploy/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-s2i-build-and-deploy/pom.xml index 5ff15e511abe6..0ae9f611c1f71 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-s2i-build-and-deploy/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-s2i-build-and-deploy/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-with-output-directory-build-and-deploy/pom.xml b/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-with-output-directory-build-and-deploy/pom.xml index 4c0fbcee7c557..21d699d9d3a13 100644 --- a/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-with-output-directory-build-and-deploy/pom.xml +++ b/integration-tests/kubernetes/maven-invoker-way/src/it/openshift-with-output-directory-build-and-deploy/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/kubernetes/quarkus-standard-way-kafka/pom.xml b/integration-tests/kubernetes/quarkus-standard-way-kafka/pom.xml index c9a17e68fa544..9926d4d4cf022 100644 --- a/integration-tests/kubernetes/quarkus-standard-way-kafka/pom.xml +++ b/integration-tests/kubernetes/quarkus-standard-way-kafka/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/kubernetes/quarkus-standard-way/pom.xml b/integration-tests/kubernetes/quarkus-standard-way/pom.xml index aa95bd0ea16d4..3ba5255374af8 100644 --- a/integration-tests/kubernetes/quarkus-standard-way/pom.xml +++ b/integration-tests/kubernetes/quarkus-standard-way/pom.xml @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/liquibase-mongodb/pom.xml b/integration-tests/liquibase-mongodb/pom.xml index 1ac94cf7a9ce6..b953c352e293f 100644 --- a/integration-tests/liquibase-mongodb/pom.xml +++ b/integration-tests/liquibase-mongodb/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/liquibase/pom.xml b/integration-tests/liquibase/pom.xml index 51828d7e90191..aa4256fb53719 100644 --- a/integration-tests/liquibase/pom.xml +++ b/integration-tests/liquibase/pom.xml @@ -37,12 +37,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/locales/all/pom.xml b/integration-tests/locales/all/pom.xml index 23a78397426ad..15bef889db7f4 100644 --- a/integration-tests/locales/all/pom.xml +++ b/integration-tests/locales/all/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/locales/default/pom.xml b/integration-tests/locales/default/pom.xml index 2d635a1715b6b..369a353b78a6e 100644 --- a/integration-tests/locales/default/pom.xml +++ b/integration-tests/locales/default/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/locales/some/pom.xml b/integration-tests/locales/some/pom.xml index f67c85eebff52..86d3a194e8b31 100644 --- a/integration-tests/locales/some/pom.xml +++ b/integration-tests/locales/some/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/logging-gelf/pom.xml b/integration-tests/logging-gelf/pom.xml index 3d30b51f98f98..e68a5f269bcc0 100644 --- a/integration-tests/logging-gelf/pom.xml +++ b/integration-tests/logging-gelf/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/logging-json/pom.xml b/integration-tests/logging-json/pom.xml index b47b9583a4d70..89d053a8fdef4 100644 --- a/integration-tests/logging-json/pom.xml +++ b/integration-tests/logging-json/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/logging-min-level-set/pom.xml b/integration-tests/logging-min-level-set/pom.xml index 38e124a93d652..2cdfc971d889e 100644 --- a/integration-tests/logging-min-level-set/pom.xml +++ b/integration-tests/logging-min-level-set/pom.xml @@ -23,7 +23,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/logging-min-level-unset/pom.xml b/integration-tests/logging-min-level-unset/pom.xml index 8fed5dc28f7a8..1d6e34cfb3f2a 100644 --- a/integration-tests/logging-min-level-unset/pom.xml +++ b/integration-tests/logging-min-level-unset/pom.xml @@ -23,7 +23,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/logging-panache-kotlin/pom.xml b/integration-tests/logging-panache-kotlin/pom.xml index 366fccc401d49..db6e4f4ef1d2e 100644 --- a/integration-tests/logging-panache-kotlin/pom.xml +++ b/integration-tests/logging-panache-kotlin/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/logging-panache/pom.xml b/integration-tests/logging-panache/pom.xml index 8dd1c543b970e..7beb1a72d3938 100644 --- a/integration-tests/logging-panache/pom.xml +++ b/integration-tests/logging-panache/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/mailer/pom.xml b/integration-tests/mailer/pom.xml index 47f3e76d5758e..9f71ef9f599fb 100644 --- a/integration-tests/mailer/pom.xml +++ b/integration-tests/mailer/pom.xml @@ -36,7 +36,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/main/pom.xml b/integration-tests/main/pom.xml index da293a8fa667f..ff243093bf6cc 100644 --- a/integration-tests/main/pom.xml +++ b/integration-tests/main/pom.xml @@ -154,12 +154,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-component + quarkus-junit-jupiter-component test diff --git a/integration-tests/main/src/test/java/io/quarkus/it/main/JUnit5PerClassLifecycleTest.java b/integration-tests/main/src/test/java/io/quarkus/it/main/JUnit5PerClassLifecycleTest.java index 22a1a374133ea..8ff5775a461ae 100644 --- a/integration-tests/main/src/test/java/io/quarkus/it/main/JUnit5PerClassLifecycleTest.java +++ b/integration-tests/main/src/test/java/io/quarkus/it/main/JUnit5PerClassLifecycleTest.java @@ -15,7 +15,7 @@ import io.smallrye.common.constraint.Assert; /** - * Tests JUnit 5 extension when test lifecycle is PER_CLASS. This means extension events get fired in slightly different + * Tests JUnit Jupiter extension when test lifecycle is PER_CLASS. This means extension events get fired in slightly different * order and Quarkus/Arc bootstrap and instance injection have to account for that. * * Test verifies that bootstrap works and that you can use injection even in before/after methods. diff --git a/integration-tests/main/src/test/java/io/quarkus/it/main/QuarkusTestNestedTestCase.java b/integration-tests/main/src/test/java/io/quarkus/it/main/QuarkusTestNestedTestCase.java index 479600280ca33..2cda35d2c8abc 100644 --- a/integration-tests/main/src/test/java/io/quarkus/it/main/QuarkusTestNestedTestCase.java +++ b/integration-tests/main/src/test/java/io/quarkus/it/main/QuarkusTestNestedTestCase.java @@ -78,9 +78,9 @@ void beforeEach() { @Order(1) void testOne() { assertEquals(1, COUNT_BEFORE_ALL.get(), "COUNT_BEFORE_ALL"); - assertEquals(7, COUNT_BEFORE_EACH.get(), "COUNT_BEFORE_EACH"); - assertEquals(2, COUNT_TEST.getAndIncrement(), "COUNT_TEST"); - assertEquals(5, COUNT_AFTER_EACH.get(), "COUNT_AFTER_EACH"); + assertEquals(3, COUNT_BEFORE_EACH.get(), "COUNT_BEFORE_EACH"); + assertEquals(1, COUNT_TEST.getAndIncrement(), "COUNT_TEST"); + assertEquals(1, COUNT_AFTER_EACH.get(), "COUNT_AFTER_EACH"); assertEquals(0, COUNT_AFTER_ALL.get(), "COUNT_AFTER_ALL"); } @@ -88,9 +88,9 @@ void testOne() { @Order(2) void testTwo() { assertEquals(1, COUNT_BEFORE_ALL.get(), "COUNT_BEFORE_ALL"); - assertEquals(9, COUNT_BEFORE_EACH.get(), "COUNT_BEFORE_EACH"); - assertEquals(3, COUNT_TEST.getAndIncrement(), "COUNT_TEST"); - assertEquals(7, COUNT_AFTER_EACH.get(), "COUNT_AFTER_EACH"); + assertEquals(5, COUNT_BEFORE_EACH.get(), "COUNT_BEFORE_EACH"); + assertEquals(2, COUNT_TEST.getAndIncrement(), "COUNT_TEST"); + assertEquals(3, COUNT_AFTER_EACH.get(), "COUNT_AFTER_EACH"); assertEquals(0, COUNT_AFTER_ALL.get(), "COUNT_AFTER_ALL"); } @@ -162,7 +162,7 @@ void testOuterInstancesInAfterEach() { @Test @Order(5) void testOuterInstancesInAfterAll() { - assertEquals(1, TestContextCheckerAfterAllCallback.OUTER_INSTANCES.size()); + assertEquals(0, TestContextCheckerAfterAllCallback.OUTER_INSTANCES.size()); } } } @@ -178,9 +178,9 @@ void beforeEach() { @Test void testOne() { assertEquals(1, COUNT_BEFORE_ALL.get(), "COUNT_BEFORE_ALL"); - assertEquals(3, COUNT_BEFORE_EACH.get(), "COUNT_BEFORE_EACH"); - assertEquals(1, COUNT_TEST.getAndIncrement(), "COUNT_TEST"); - assertEquals(1, COUNT_AFTER_EACH.get(), "COUNT_AFTER_EACH"); + assertEquals(23, COUNT_BEFORE_EACH.get(), "COUNT_BEFORE_EACH"); + assertEquals(3, COUNT_TEST.getAndIncrement(), "COUNT_TEST"); + assertEquals(21, COUNT_AFTER_EACH.get(), "COUNT_AFTER_EACH"); assertEquals(0, COUNT_AFTER_ALL.get(), "COUNT_AFTER_ALL"); } diff --git a/integration-tests/management-interface-auth/pom.xml b/integration-tests/management-interface-auth/pom.xml index fc2912e35a062..f8d61f4eca73c 100644 --- a/integration-tests/management-interface-auth/pom.xml +++ b/integration-tests/management-interface-auth/pom.xml @@ -36,7 +36,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/management-interface/pom.xml b/integration-tests/management-interface/pom.xml index 9e4c429797d25..f55d33a08f630 100644 --- a/integration-tests/management-interface/pom.xml +++ b/integration-tests/management-interface/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/pom.xml b/integration-tests/maven/pom.xml index 8b3f3cba926f5..39327b1557be2 100644 --- a/integration-tests/maven/pom.xml +++ b/integration-tests/maven/pom.xml @@ -56,7 +56,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test @@ -77,7 +77,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-add-to-bom/add-to-bom/deployment/pom.xml b/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-add-to-bom/add-to-bom/deployment/pom.xml index 760dec2011610..ea59c7658c23f 100644 --- a/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-add-to-bom/add-to-bom/deployment/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-add-to-bom/add-to-bom/deployment/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-itest/integration-tests/itest/pom.xml b/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-itest/integration-tests/itest/pom.xml index f9089bb6e404f..0a6f66a957d02 100644 --- a/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-itest/integration-tests/itest/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-itest/integration-tests/itest/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter \${quarkus.version} test diff --git a/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-itest/itest/deployment/pom.xml b/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-itest/itest/deployment/pom.xml index 44ad83bdc9abf..fc1f88f7cbcb7 100644 --- a/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-itest/itest/deployment/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-itest/itest/deployment/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-minimal/minimal-extension/deployment/pom.xml b/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-minimal/minimal-extension/deployment/pom.xml index fc8416e7e0c5f..48355831d8f65 100644 --- a/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-minimal/minimal-extension/deployment/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-minimal/minimal-extension/deployment/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-with-grand-parent/with-grand-parent/deployment/pom.xml b/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-with-grand-parent/with-grand-parent/deployment/pom.xml index ef25447202de0..e22374e102c5f 100644 --- a/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-with-grand-parent/with-grand-parent/deployment/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/expected/create-extension-pom-with-grand-parent/with-grand-parent/deployment/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/expected/new-extension-current-directory-project/deployment/pom.xml b/integration-tests/maven/src/test/resources-filtered/expected/new-extension-current-directory-project/deployment/pom.xml index a445820787d6e..fffafc10cf3d7 100644 --- a/integration-tests/maven/src/test/resources-filtered/expected/new-extension-current-directory-project/deployment/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/expected/new-extension-current-directory-project/deployment/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/expected/new-extension-project-with-jboss-parent/my-ext/deployment/pom.xml b/integration-tests/maven/src/test/resources-filtered/expected/new-extension-project-with-jboss-parent/my-ext/deployment/pom.xml index a445820787d6e..fffafc10cf3d7 100644 --- a/integration-tests/maven/src/test/resources-filtered/expected/new-extension-project-with-jboss-parent/my-ext/deployment/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/expected/new-extension-project-with-jboss-parent/my-ext/deployment/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/expected/new-extension-project/my-ext/deployment/pom.xml b/integration-tests/maven/src/test/resources-filtered/expected/new-extension-project/my-ext/deployment/pom.xml index a445820787d6e..fffafc10cf3d7 100644 --- a/integration-tests/maven/src/test/resources-filtered/expected/new-extension-project/my-ext/deployment/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/expected/new-extension-project/my-ext/deployment/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/apt-in-annotation-processor-paths/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/apt-in-annotation-processor-paths/pom.xml index 5ccf1727b91d3..0546ea14948d4 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/apt-in-annotation-processor-paths/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/apt-in-annotation-processor-paths/pom.xml @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/apt-in-annotation-processors/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/apt-in-annotation-processors/pom.xml index 8b8d2d3bf3076..4a677c678496f 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/apt-in-annotation-processors/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/apt-in-annotation-processors/pom.xml @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/apt-in-classpath/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/apt-in-classpath/pom.xml index b19864da41e08..592f7f87f518c 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/apt-in-classpath/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/apt-in-classpath/pom.xml @@ -65,7 +65,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/arc-exclude-dependencies/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/arc-exclude-dependencies/runner/pom.xml index 271a4f256ad7f..8b4fd855390d0 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/arc-exclude-dependencies/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/arc-exclude-dependencies/runner/pom.xml @@ -22,7 +22,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/basic-command-mode/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/basic-command-mode/pom.xml index 4b15d0284495d..87e7cf41bb1f5 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/basic-command-mode/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/basic-command-mode/pom.xml @@ -34,12 +34,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/capabilities-conflict/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/capabilities-conflict/runner/pom.xml index bbe7188cf66dd..6590212a52a31 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/capabilities-conflict/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/capabilities-conflict/runner/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/capabilities-missing/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/capabilities-missing/runner/pom.xml index 57052faa4bfd7..9e0cca780f57a 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/capabilities-missing/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/capabilities-missing/runner/pom.xml @@ -23,7 +23,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic-2.x/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic-2.x/pom.xml index e0a0c674c2618..965f7ac5525e4 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic-2.x/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic-2.x/pom.xml @@ -55,7 +55,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic-inst/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic-inst/pom.xml index 6a723e9b22fb0..090f62e642e40 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic-inst/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic-inst/pom.xml @@ -47,7 +47,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic-no-build/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic-no-build/pom.xml index 6868d901e8344..058de6ec035a6 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic-no-build/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic-no-build/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic-no-generate/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic-no-generate/pom.xml index 0e485910b223f..bb3012b7fbf4e 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic-no-generate/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic-no-generate/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic-no-undertow/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic-no-undertow/pom.xml index 251df3d43a305..29509ff626be2 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic-no-undertow/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic-no-undertow/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic-noconfig/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic-noconfig/pom.xml index 1441eb2f941e4..94d66518f28d4 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic-noconfig/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic-noconfig/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic-remote-dev/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic-remote-dev/pom.xml index 02cc249e3ea74..01e32b3d68fd3 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic-remote-dev/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic-remote-dev/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic-resource-filtering/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic-resource-filtering/pom.xml index 416f1756da3fe..8c562c8f0838d 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic-resource-filtering/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic-resource-filtering/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic-resteasy/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic-resteasy/pom.xml index c4640b07ce991..9b3356a11bf15 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic-resteasy/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic-resteasy/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic-with-log/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic-with-log/pom.xml index 467fac67f4ed0..1fb86bfeafd44 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic-with-log/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic-with-log/pom.xml @@ -60,7 +60,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic/pom.xml index 467fac67f4ed0..1fb86bfeafd44 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/classic/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/classic/pom.xml @@ -60,7 +60,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/codegen-config-factory/acme-codegen/deployment/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/codegen-config-factory/acme-codegen/deployment/pom.xml index 3771122e22315..b54ef7f588372 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/codegen-config-factory/acme-codegen/deployment/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/codegen-config-factory/acme-codegen/deployment/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/codegen-config-factory/app/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/codegen-config-factory/app/pom.xml index 3f03d09371d6c..ba6a36e19f2ef 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/codegen-config-factory/app/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/codegen-config-factory/app/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/command-mode-app-args-plugin-config/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/command-mode-app-args-plugin-config/pom.xml index cce802fc99302..6acb87f8b0d93 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/command-mode-app-args-plugin-config/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/command-mode-app-args-plugin-config/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/conditional-dependencies/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/conditional-dependencies/runner/pom.xml index 3a723e3fd0089..80fc3c49b969a 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/conditional-dependencies/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/conditional-dependencies/runner/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/custom-manifest-attributes/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/custom-manifest-attributes/pom.xml index c892f03ebbc3f..83642f588fed2 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/custom-manifest-attributes/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/custom-manifest-attributes/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/custom-resources-dir/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/custom-resources-dir/pom.xml index c13d93412b993..b9284ac57be14 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/custom-resources-dir/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/custom-resources-dir/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/dependency-on-pom/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/dependency-on-pom/pom.xml index 188bda794e644..f181d4a460dff 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/dependency-on-pom/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/dependency-on-pom/pom.xml @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-file-deletion/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-file-deletion/pom.xml index 6942eebebdc40..6c70850a4589e 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-file-deletion/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-file-deletion/pom.xml @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-multiple-resource-dirs-with-profile/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-multiple-resource-dirs-with-profile/pom.xml index 0fd506155f939..0be6bf2bde53b 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-multiple-resource-dirs-with-profile/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-multiple-resource-dirs-with-profile/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-multiple-resource-dirs/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-multiple-resource-dirs/pom.xml index f6c5fcee4b0f1..926723db16980 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-multiple-resource-dirs/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/dev-mode-multiple-resource-dirs/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/extension-removed-resources/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/extension-removed-resources/runner/pom.xml index 84a6373dc2569..6fa330f82c776 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/extension-removed-resources/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/extension-removed-resources/runner/pom.xml @@ -19,7 +19,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/extension-test-with-no-main/deployment/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/extension-test-with-no-main/deployment/pom.xml index 9a2863adf1ba0..894834319e313 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/extension-test-with-no-main/deployment/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/extension-test-with-no-main/deployment/pom.xml @@ -21,7 +21,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/extension-test-with-no-main/integration-tests/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/extension-test-with-no-main/integration-tests/pom.xml index f8ac83bb079c3..88ccc87255d23 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/extension-test-with-no-main/integration-tests/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/extension-test-with-no-main/integration-tests/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/flatten-maven-plugin/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/flatten-maven-plugin/pom.xml index a9fde9964e5e1..ba23389b7b1a9 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/flatten-maven-plugin/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/flatten-maven-plugin/pom.xml @@ -36,7 +36,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/ide-dev-mode-build-props/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/ide-dev-mode-build-props/pom.xml index aeb84ad4b1356..db069fc793f69 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/ide-dev-mode-build-props/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/ide-dev-mode-build-props/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/maven-extension-manipulating-pom/app/app/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/maven-extension-manipulating-pom/app/app/pom.xml index 40881a79f41c1..db83d599772e9 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/maven-extension-manipulating-pom/app/app/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/maven-extension-manipulating-pom/app/app/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/mockito-non-public-inner-class/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/mockito-non-public-inner-class/pom.xml index fbe2012be6825..77bba03d1176c 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/mockito-non-public-inner-class/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/mockito-non-public-inner-class/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/modules-in-profiles/integration-tests/rest-tests/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/modules-in-profiles/integration-tests/rest-tests/pom.xml index c76dc44ac166c..50a51bcf1a0ba 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/modules-in-profiles/integration-tests/rest-tests/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/modules-in-profiles/integration-tests/rest-tests/pom.xml @@ -21,7 +21,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multi-build-mode-parallel/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multi-build-mode-parallel/pom.xml index 71c2a810cf64d..278a15471ed6c 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multi-build-mode-parallel/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multi-build-mode-parallel/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multi-build-mode/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multi-build-mode/pom.xml index 8aea7e7053f12..e0b2cfefcb857 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multi-build-mode/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multi-build-mode/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multijar-module/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multijar-module/runner/pom.xml index 24d797080cb13..5d2c10e1e4816 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multijar-module/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multijar-module/runner/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-classpath/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-classpath/runner/pom.xml index 02fc7c1410081..c0c4a16ed091e 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-classpath/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-classpath/runner/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-pom-reference/rest/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-pom-reference/rest/pom.xml index 1bbdc5ac0ec86..ee855f6792a28 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-pom-reference/rest/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-pom-reference/rest/pom.xml @@ -19,7 +19,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-pom-reference/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-pom-reference/runner/pom.xml index e838cbe7d15de..17539b1d9d94c 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-pom-reference/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-pom-reference/runner/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-revision-prop/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-revision-prop/runner/pom.xml index ccc79c6c94555..8bcb37334f03c 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-revision-prop/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-revision-prop/runner/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-root-no-src/rest/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-root-no-src/rest/pom.xml index 72ab8a74ef5a4..cc7acec9f93bd 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-root-no-src/rest/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-root-no-src/rest/pom.xml @@ -23,7 +23,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-root-no-src/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-root-no-src/runner/pom.xml index 0b8825d01d5b2..8fb391e614dbd 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multimodule-root-no-src/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multimodule-root-no-src/runner/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multimodule/rest/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multimodule/rest/pom.xml index 1bbdc5ac0ec86..ee855f6792a28 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multimodule/rest/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multimodule/rest/pom.xml @@ -19,7 +19,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/multimodule/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/multimodule/runner/pom.xml index e838cbe7d15de..17539b1d9d94c 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/multimodule/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/multimodule/runner/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/native-agent-integration/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/native-agent-integration/pom.xml index 5e79b5015cd8a..0aefed6737c0f 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/native-agent-integration/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/native-agent-integration/pom.xml @@ -55,7 +55,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/path-filter-not-applied-test-classes/app/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/path-filter-not-applied-test-classes/app/pom.xml index 36e35e17c8bc7..31ec79c8afd1a 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/path-filter-not-applied-test-classes/app/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/path-filter-not-applied-test-classes/app/pom.xml @@ -21,7 +21,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/platform-properties-overrides/app/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/platform-properties-overrides/app/pom.xml index 03eb02b7bb125..7111e20480449 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/platform-properties-overrides/app/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/platform-properties-overrides/app/pom.xml @@ -20,7 +20,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/platform-properties-overrides/ext/deployment/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/platform-properties-overrides/ext/deployment/pom.xml index fde39025600ff..948d85920d3fa 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/platform-properties-overrides/ext/deployment/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/platform-properties-overrides/ext/deployment/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/project-with-extension/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/project-with-extension/runner/pom.xml index 06c65ffacfcce..52204a0c50983 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/project-with-extension/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/project-with-extension/runner/pom.xml @@ -37,7 +37,7 @@ end comment --> io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/property-expansion/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/property-expansion/pom.xml index 21f37d609612f..6c7678523f785 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/property-expansion/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/property-expansion/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/property-overrides/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/property-overrides/runner/pom.xml index 275cc225c81c2..8eaa80b4ef877 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/property-overrides/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/property-overrides/runner/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/proto-gen/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/proto-gen/pom.xml index 980dce8315e67..059b11c718a8d 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/proto-gen/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/proto-gen/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/quarkus-index-dependencies-groupid/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/quarkus-index-dependencies-groupid/runner/pom.xml index dd194e17d311f..b8e5651ddda60 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/quarkus-index-dependencies-groupid/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/quarkus-index-dependencies-groupid/runner/pom.xml @@ -22,7 +22,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/quarkus-index-dependencies/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/quarkus-index-dependencies/runner/pom.xml index dd194e17d311f..b8e5651ddda60 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/quarkus-index-dependencies/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/quarkus-index-dependencies/runner/pom.xml @@ -22,7 +22,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/quarkus.package.output-directory/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/quarkus.package.output-directory/pom.xml index b5b72691f414e..6fdf4474d4592 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/quarkus.package.output-directory/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/quarkus.package.output-directory/pom.xml @@ -36,7 +36,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/quarkustest-added-with-serviceloader/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/quarkustest-added-with-serviceloader/runner/pom.xml index 7a200cdf0ebdc..dea5764cfd517 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/quarkustest-added-with-serviceloader/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/quarkustest-added-with-serviceloader/runner/pom.xml @@ -47,7 +47,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/reactive-routes/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/reactive-routes/pom.xml index c499c0b96458d..e10863922817a 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/reactive-routes/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/reactive-routes/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/rest-client-custom-headers-extension/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/rest-client-custom-headers-extension/runner/pom.xml index 973182ca31c48..246e5bc6532d4 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/rest-client-custom-headers-extension/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/rest-client-custom-headers-extension/runner/pom.xml @@ -22,7 +22,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml index 4ce7da75dfc8d..2134f06f72ec4 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml @@ -52,7 +52,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-config-in-test-profile/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-config-in-test-profile/pom.xml index 919803fa4d820..f0887098b4432 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-config-in-test-profile/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-config-in-test-profile/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-flaky-test-multiple-profiles/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-flaky-test-multiple-profiles/pom.xml index c971e9c0df58a..9c12446d6fefa 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-flaky-test-multiple-profiles/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-flaky-test-multiple-profiles/pom.xml @@ -60,7 +60,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-flaky-test-single-profile/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-flaky-test-single-profile/pom.xml index c971e9c0df58a..9c12446d6fefa 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-flaky-test-single-profile/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-flaky-test-single-profile/pom.xml @@ -60,7 +60,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-module-dependency/app/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-module-dependency/app/pom.xml index 821585b7ffc87..bfffc9c7422c3 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-module-dependency/app/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-module-dependency/app/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-nested-tests-mixed-with-normal-tests/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-nested-tests-mixed-with-normal-tests/pom.xml index af5d6315bf22a..f7432ef1aa2b1 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-nested-tests-mixed-with-normal-tests/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-nested-tests-mixed-with-normal-tests/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-plugin-classpath-config/runner/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-plugin-classpath-config/runner/pom.xml index 3a52ff2411f59..54f74293a745b 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-plugin-classpath-config/runner/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-plugin-classpath-config/runner/pom.xml @@ -19,7 +19,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-selection/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-selection/pom.xml index 4cb346fd1160d..b0dd3b1115c08 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-selection/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-selection/pom.xml @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-source-sets/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-source-sets/pom.xml index 00618d461f23e..24459c03f01e1 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-source-sets/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-source-sets/pom.xml @@ -59,7 +59,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-template/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-template/pom.xml index 6eb04200c045f..5757f18056bbd 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-template/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-template/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-test-conditions/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-test-conditions/pom.xml index dcb15ba3c9e69..7db0c039193d2 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-test-conditions/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-test-conditions/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-test-profile-run-main/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-test-profile-run-main/pom.xml index af5d6315bf22a..f7432ef1aa2b1 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-test-profile-run-main/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-test-profile-run-main/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-test-profile/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-test-profile/pom.xml index af5d6315bf22a..f7432ef1aa2b1 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-test-profile/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-test-profile/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-tests-in-project-with-junit-properties-file/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-tests-in-project-with-junit-properties-file/pom.xml index af5d6315bf22a..f7432ef1aa2b1 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-tests-in-project-with-junit-properties-file/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-tests-in-project-with-junit-properties-file/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/test-third-party-junit-extension/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/test-third-party-junit-extension/pom.xml index d716797246184..54cf06c598d89 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/test-third-party-junit-extension/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/test-third-party-junit-extension/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/tests-in-jar-packager/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/tests-in-jar-packager/pom.xml index dcfcef1a508ca..d5efed83f8f09 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/tests-in-jar-packager/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/tests-in-jar-packager/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/tests-in-jar/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/tests-in-jar/pom.xml index 898f61118b498..af5693bc8a686 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/tests-in-jar/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/tests-in-jar/pom.xml @@ -49,7 +49,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/uberjar-check/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/uberjar-check/pom.xml index a0254579c9083..bb70586c29977 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/uberjar-check/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/uberjar-check/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources-filtered/projects/uberjar-maven-plugin-config/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/uberjar-maven-plugin-config/pom.xml index 2fc49a440c8cd..1842f4292df76 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/uberjar-maven-plugin-config/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/uberjar-maven-plugin-config/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/maven/src/test/resources/__snapshots__/CreateExtensionMojoIT/testCreateQuarkiverseExtension/quarkus-my-quarkiverse-ext_integration-tests_pom.xml b/integration-tests/maven/src/test/resources/__snapshots__/CreateExtensionMojoIT/testCreateQuarkiverseExtension/quarkus-my-quarkiverse-ext_integration-tests_pom.xml index 78258dde5d646..464a7dfac11a9 100644 --- a/integration-tests/maven/src/test/resources/__snapshots__/CreateExtensionMojoIT/testCreateQuarkiverseExtension/quarkus-my-quarkiverse-ext_integration-tests_pom.xml +++ b/integration-tests/maven/src/test/resources/__snapshots__/CreateExtensionMojoIT/testCreateQuarkiverseExtension/quarkus-my-quarkiverse-ext_integration-tests_pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/micrometer-mp-metrics/pom.xml b/integration-tests/micrometer-mp-metrics/pom.xml index 911cac93f4a12..a4e60a3de831c 100644 --- a/integration-tests/micrometer-mp-metrics/pom.xml +++ b/integration-tests/micrometer-mp-metrics/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/micrometer-opentelemetry/pom.xml b/integration-tests/micrometer-opentelemetry/pom.xml index 3024e8ce425d0..86d7f337ab72e 100644 --- a/integration-tests/micrometer-opentelemetry/pom.xml +++ b/integration-tests/micrometer-opentelemetry/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/micrometer-prometheus/pom.xml b/integration-tests/micrometer-prometheus/pom.xml index 2ab7282b1847e..2ab3a73652062 100644 --- a/integration-tests/micrometer-prometheus/pom.xml +++ b/integration-tests/micrometer-prometheus/pom.xml @@ -60,7 +60,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/micrometer-security/pom.xml b/integration-tests/micrometer-security/pom.xml index 9422bf687a856..785ab9e31647a 100644 --- a/integration-tests/micrometer-security/pom.xml +++ b/integration-tests/micrometer-security/pom.xml @@ -34,7 +34,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/mongodb-client/pom.xml b/integration-tests/mongodb-client/pom.xml index 7bd4783c01fec..9a2eb676ee609 100644 --- a/integration-tests/mongodb-client/pom.xml +++ b/integration-tests/mongodb-client/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/mongodb-devservices/pom.xml b/integration-tests/mongodb-devservices/pom.xml index c9a31befc98ef..457ea2ba13bb2 100644 --- a/integration-tests/mongodb-devservices/pom.xml +++ b/integration-tests/mongodb-devservices/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/mongodb-panache-kotlin/pom.xml b/integration-tests/mongodb-panache-kotlin/pom.xml index b20f9108dc75c..fc43159d3cdaf 100644 --- a/integration-tests/mongodb-panache-kotlin/pom.xml +++ b/integration-tests/mongodb-panache-kotlin/pom.xml @@ -58,7 +58,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/mongodb-panache/pom.xml b/integration-tests/mongodb-panache/pom.xml index ef75ce6534d53..a0b7e8adb7a19 100644 --- a/integration-tests/mongodb-panache/pom.xml +++ b/integration-tests/mongodb-panache/pom.xml @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/mongodb-rest-data-panache/pom.xml b/integration-tests/mongodb-rest-data-panache/pom.xml index a8aa6fb4e1f59..24302c87c93e1 100644 --- a/integration-tests/mongodb-rest-data-panache/pom.xml +++ b/integration-tests/mongodb-rest-data-panache/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/mtls-certificates/pom.xml b/integration-tests/mtls-certificates/pom.xml index 5209a355df098..ee95d7d6868ff 100644 --- a/integration-tests/mtls-certificates/pom.xml +++ b/integration-tests/mtls-certificates/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/mutiny-native-jctools/pom.xml b/integration-tests/mutiny-native-jctools/pom.xml index 63745714cff8d..4c10559d3261f 100644 --- a/integration-tests/mutiny-native-jctools/pom.xml +++ b/integration-tests/mutiny-native-jctools/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/narayana-jta/pom.xml b/integration-tests/narayana-jta/pom.xml index 3138ba3c0642b..f25839ad28d43 100644 --- a/integration-tests/narayana-jta/pom.xml +++ b/integration-tests/narayana-jta/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/narayana-lra/pom.xml b/integration-tests/narayana-lra/pom.xml index 5c13887edf3a9..4470f1cdc3a48 100644 --- a/integration-tests/narayana-lra/pom.xml +++ b/integration-tests/narayana-lra/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/narayana-stm/pom.xml b/integration-tests/narayana-stm/pom.xml index 9a6a817fa2b2e..4de8b676e6cd9 100644 --- a/integration-tests/narayana-stm/pom.xml +++ b/integration-tests/narayana-stm/pom.xml @@ -22,7 +22,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/native-config-profile/pom.xml b/integration-tests/native-config-profile/pom.xml index 4bc0894574d9f..8b10316f3dd1e 100644 --- a/integration-tests/native-config-profile/pom.xml +++ b/integration-tests/native-config-profile/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/native-image-annotations/pom.xml b/integration-tests/native-image-annotations/pom.xml index 0476bc4468ca7..a453becf474b0 100644 --- a/integration-tests/native-image-annotations/pom.xml +++ b/integration-tests/native-image-annotations/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/no-awt/pom.xml b/integration-tests/no-awt/pom.xml index 7b8b1a3b46f22..f0bea731d8c51 100644 --- a/integration-tests/no-awt/pom.xml +++ b/integration-tests/no-awt/pom.xml @@ -23,7 +23,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/observability-lgtm-fixedports/pom.xml b/integration-tests/observability-lgtm-fixedports/pom.xml index ff2c70bb3a029..1c581d91cdbd8 100644 --- a/integration-tests/observability-lgtm-fixedports/pom.xml +++ b/integration-tests/observability-lgtm-fixedports/pom.xml @@ -33,12 +33,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/observability-lgtm-prometheus/pom.xml b/integration-tests/observability-lgtm-prometheus/pom.xml index c424451aa2ffd..96a5e156def4c 100644 --- a/integration-tests/observability-lgtm-prometheus/pom.xml +++ b/integration-tests/observability-lgtm-prometheus/pom.xml @@ -37,12 +37,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/observability-lgtm/pom.xml b/integration-tests/observability-lgtm/pom.xml index d9dc7ae4b7ead..f7d396d76ee79 100644 --- a/integration-tests/observability-lgtm/pom.xml +++ b/integration-tests/observability-lgtm/pom.xml @@ -33,12 +33,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/oidc-client-reactive/pom.xml b/integration-tests/oidc-client-reactive/pom.xml index caab893e3c940..57d23f77b1eac 100644 --- a/integration-tests/oidc-client-reactive/pom.xml +++ b/integration-tests/oidc-client-reactive/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-client-registration/pom.xml b/integration-tests/oidc-client-registration/pom.xml index 1c064689bcba6..ed58ff0700104 100644 --- a/integration-tests/oidc-client-registration/pom.xml +++ b/integration-tests/oidc-client-registration/pom.xml @@ -74,7 +74,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-client-wiremock/pom.xml b/integration-tests/oidc-client-wiremock/pom.xml index 668b25ec8b233..e4db0fb071dcf 100644 --- a/integration-tests/oidc-client-wiremock/pom.xml +++ b/integration-tests/oidc-client-wiremock/pom.xml @@ -18,7 +18,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-client/pom.xml b/integration-tests/oidc-client/pom.xml index 2987d69959012..61bb2e7ea5fe7 100644 --- a/integration-tests/oidc-client/pom.xml +++ b/integration-tests/oidc-client/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-code-flow/pom.xml b/integration-tests/oidc-code-flow/pom.xml index 93d59874efedf..4b6bd84139604 100644 --- a/integration-tests/oidc-code-flow/pom.xml +++ b/integration-tests/oidc-code-flow/pom.xml @@ -47,7 +47,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-dev-services/pom.xml b/integration-tests/oidc-dev-services/pom.xml index b23769f527986..9be6ebdbbed26 100644 --- a/integration-tests/oidc-dev-services/pom.xml +++ b/integration-tests/oidc-dev-services/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-dpop/pom.xml b/integration-tests/oidc-dpop/pom.xml index 86825fb430f3d..51443521c37ce 100644 --- a/integration-tests/oidc-dpop/pom.xml +++ b/integration-tests/oidc-dpop/pom.xml @@ -69,7 +69,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-mtls/pom.xml b/integration-tests/oidc-mtls/pom.xml index 7b6b331e319be..1aca9edea1deb 100644 --- a/integration-tests/oidc-mtls/pom.xml +++ b/integration-tests/oidc-mtls/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-tenancy/pom.xml b/integration-tests/oidc-tenancy/pom.xml index e62e1bea953cb..24ad48e50b32f 100644 --- a/integration-tests/oidc-tenancy/pom.xml +++ b/integration-tests/oidc-tenancy/pom.xml @@ -52,7 +52,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-token-propagation-reactive/pom.xml b/integration-tests/oidc-token-propagation-reactive/pom.xml index 47b8de765c8a3..e2fc7c886ac91 100644 --- a/integration-tests/oidc-token-propagation-reactive/pom.xml +++ b/integration-tests/oidc-token-propagation-reactive/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-wiremock-logout/pom.xml b/integration-tests/oidc-wiremock-logout/pom.xml index 546a318c317c7..ef6a3ad5b24d8 100644 --- a/integration-tests/oidc-wiremock-logout/pom.xml +++ b/integration-tests/oidc-wiremock-logout/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-wiremock-providers/pom.xml b/integration-tests/oidc-wiremock-providers/pom.xml index 25f98f412045c..ec8dd77879ac7 100644 --- a/integration-tests/oidc-wiremock-providers/pom.xml +++ b/integration-tests/oidc-wiremock-providers/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc-wiremock/pom.xml b/integration-tests/oidc-wiremock/pom.xml index bc89fbb757485..21b3fe620dcff 100644 --- a/integration-tests/oidc-wiremock/pom.xml +++ b/integration-tests/oidc-wiremock/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/oidc/pom.xml b/integration-tests/oidc/pom.xml index b780923872b34..e5dd99728ecee 100644 --- a/integration-tests/oidc/pom.xml +++ b/integration-tests/oidc/pom.xml @@ -48,7 +48,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/openapi/pom.xml b/integration-tests/openapi/pom.xml index b6ad484e08818..74dd5f456cb4c 100644 --- a/integration-tests/openapi/pom.xml +++ b/integration-tests/openapi/pom.xml @@ -34,12 +34,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-component + quarkus-junit-jupiter-component test diff --git a/integration-tests/openshift-client/pom.xml b/integration-tests/openshift-client/pom.xml index a5bb07ea7c7d1..11ca8b725b310 100644 --- a/integration-tests/openshift-client/pom.xml +++ b/integration-tests/openshift-client/pom.xml @@ -58,12 +58,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/opentelemetry-exporter-logging/pom.xml b/integration-tests/opentelemetry-exporter-logging/pom.xml index a16777018f8f2..e4a445da5fe4e 100644 --- a/integration-tests/opentelemetry-exporter-logging/pom.xml +++ b/integration-tests/opentelemetry-exporter-logging/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-grpc-only/pom.xml b/integration-tests/opentelemetry-grpc-only/pom.xml index a5e12b703fb45..e9fe4ca2eb291 100644 --- a/integration-tests/opentelemetry-grpc-only/pom.xml +++ b/integration-tests/opentelemetry-grpc-only/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-grpc/pom.xml b/integration-tests/opentelemetry-grpc/pom.xml index 6a6bf38f40531..c1cb884bf5492 100644 --- a/integration-tests/opentelemetry-grpc/pom.xml +++ b/integration-tests/opentelemetry-grpc/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-jdbc-instrumentation/pom.xml b/integration-tests/opentelemetry-jdbc-instrumentation/pom.xml index 8a2a3b84d3144..9540f1bfa38c4 100644 --- a/integration-tests/opentelemetry-jdbc-instrumentation/pom.xml +++ b/integration-tests/opentelemetry-jdbc-instrumentation/pom.xml @@ -60,7 +60,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-minimal/pom.xml b/integration-tests/opentelemetry-minimal/pom.xml index 7dccd1b87b7a5..48386d832795b 100644 --- a/integration-tests/opentelemetry-minimal/pom.xml +++ b/integration-tests/opentelemetry-minimal/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-mongodb-client-instrumentation/pom.xml b/integration-tests/opentelemetry-mongodb-client-instrumentation/pom.xml index 4e209239015a9..ef9738a827b12 100644 --- a/integration-tests/opentelemetry-mongodb-client-instrumentation/pom.xml +++ b/integration-tests/opentelemetry-mongodb-client-instrumentation/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-quartz/pom.xml b/integration-tests/opentelemetry-quartz/pom.xml index c41ffdd9ad0cf..58e3b883c2e73 100644 --- a/integration-tests/opentelemetry-quartz/pom.xml +++ b/integration-tests/opentelemetry-quartz/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-quickstart/pom.xml b/integration-tests/opentelemetry-quickstart/pom.xml index 6258f7c3e68a4..ad1f0be7f06c0 100644 --- a/integration-tests/opentelemetry-quickstart/pom.xml +++ b/integration-tests/opentelemetry-quickstart/pom.xml @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-reactive-messaging/pom.xml b/integration-tests/opentelemetry-reactive-messaging/pom.xml index 4f0944fa7b67f..dff879822fb6e 100644 --- a/integration-tests/opentelemetry-reactive-messaging/pom.xml +++ b/integration-tests/opentelemetry-reactive-messaging/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-reactive/pom.xml b/integration-tests/opentelemetry-reactive/pom.xml index 660dd8da737d1..5ab4ff7405e8a 100644 --- a/integration-tests/opentelemetry-reactive/pom.xml +++ b/integration-tests/opentelemetry-reactive/pom.xml @@ -50,7 +50,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-redis-instrumentation/pom.xml b/integration-tests/opentelemetry-redis-instrumentation/pom.xml index 4dd118b520a01..f1fc27d3d6fdd 100644 --- a/integration-tests/opentelemetry-redis-instrumentation/pom.xml +++ b/integration-tests/opentelemetry-redis-instrumentation/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-scheduler/pom.xml b/integration-tests/opentelemetry-scheduler/pom.xml index b49a54c56d6ec..fc695c0c62b58 100644 --- a/integration-tests/opentelemetry-scheduler/pom.xml +++ b/integration-tests/opentelemetry-scheduler/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-spi/pom.xml b/integration-tests/opentelemetry-spi/pom.xml index 8ad73c5b62e01..df01491be666b 100644 --- a/integration-tests/opentelemetry-spi/pom.xml +++ b/integration-tests/opentelemetry-spi/pom.xml @@ -50,7 +50,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-vertx-exporter/pom.xml b/integration-tests/opentelemetry-vertx-exporter/pom.xml index dba211e3ede28..8e2af1907dcf7 100644 --- a/integration-tests/opentelemetry-vertx-exporter/pom.xml +++ b/integration-tests/opentelemetry-vertx-exporter/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry-vertx/pom.xml b/integration-tests/opentelemetry-vertx/pom.xml index 62da225a990a1..e4312b8fb7d74 100644 --- a/integration-tests/opentelemetry-vertx/pom.xml +++ b/integration-tests/opentelemetry-vertx/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/opentelemetry/pom.xml b/integration-tests/opentelemetry/pom.xml index b98f31d9c6cb7..22ae413f7890d 100644 --- a/integration-tests/opentelemetry/pom.xml +++ b/integration-tests/opentelemetry/pom.xml @@ -56,7 +56,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/packaging/pom.xml b/integration-tests/packaging/pom.xml index 04505adb8f637..a36055c232bde 100644 --- a/integration-tests/packaging/pom.xml +++ b/integration-tests/packaging/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/picocli-native/pom.xml b/integration-tests/picocli-native/pom.xml index 10f04411c601d..19ca99c23f114 100644 --- a/integration-tests/picocli-native/pom.xml +++ b/integration-tests/picocli-native/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/picocli/pom.xml b/integration-tests/picocli/pom.xml index 99e5635114578..b32808c3780c1 100644 --- a/integration-tests/picocli/pom.xml +++ b/integration-tests/picocli/pom.xml @@ -21,12 +21,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/quartz-deferred-datasource/pom.xml b/integration-tests/quartz-deferred-datasource/pom.xml index 09d6a6832b19b..bf92902126e1b 100644 --- a/integration-tests/quartz-deferred-datasource/pom.xml +++ b/integration-tests/quartz-deferred-datasource/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/quartz/pom.xml b/integration-tests/quartz/pom.xml index 12d70345a8317..7783c00e13959 100644 --- a/integration-tests/quartz/pom.xml +++ b/integration-tests/quartz/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/qute/pom.xml b/integration-tests/qute/pom.xml index 4f9f70242985f..c3005f876eee4 100644 --- a/integration-tests/qute/pom.xml +++ b/integration-tests/qute/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-db2-client/pom.xml b/integration-tests/reactive-db2-client/pom.xml index 6f2e4f923ff4b..b2e0fe4ce3878 100644 --- a/integration-tests/reactive-db2-client/pom.xml +++ b/integration-tests/reactive-db2-client/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-messaging-amqp/pom.xml b/integration-tests/reactive-messaging-amqp/pom.xml index 918a834bcba0b..4f617f731e374 100644 --- a/integration-tests/reactive-messaging-amqp/pom.xml +++ b/integration-tests/reactive-messaging-amqp/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-messaging-context-propagation/pom.xml b/integration-tests/reactive-messaging-context-propagation/pom.xml index 819aea6ddb74d..42ead4c5ea643 100644 --- a/integration-tests/reactive-messaging-context-propagation/pom.xml +++ b/integration-tests/reactive-messaging-context-propagation/pom.xml @@ -71,7 +71,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-messaging-hibernate-orm/pom.xml b/integration-tests/reactive-messaging-hibernate-orm/pom.xml index f5409927470a1..e7785f40feda4 100644 --- a/integration-tests/reactive-messaging-hibernate-orm/pom.xml +++ b/integration-tests/reactive-messaging-hibernate-orm/pom.xml @@ -72,7 +72,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-messaging-hibernate-reactive/pom.xml b/integration-tests/reactive-messaging-hibernate-reactive/pom.xml index 029a927dce98f..aef3220f48277 100644 --- a/integration-tests/reactive-messaging-hibernate-reactive/pom.xml +++ b/integration-tests/reactive-messaging-hibernate-reactive/pom.xml @@ -72,7 +72,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-messaging-kafka/pom.xml b/integration-tests/reactive-messaging-kafka/pom.xml index 6769574ca1d8c..2fc63af6b1e30 100644 --- a/integration-tests/reactive-messaging-kafka/pom.xml +++ b/integration-tests/reactive-messaging-kafka/pom.xml @@ -71,7 +71,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-messaging-mqtt/pom.xml b/integration-tests/reactive-messaging-mqtt/pom.xml index c23a2b353df1f..43d605bb7879b 100644 --- a/integration-tests/reactive-messaging-mqtt/pom.xml +++ b/integration-tests/reactive-messaging-mqtt/pom.xml @@ -53,7 +53,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-messaging-pulsar/pom.xml b/integration-tests/reactive-messaging-pulsar/pom.xml index 627c503187dad..f5a143b67dade 100644 --- a/integration-tests/reactive-messaging-pulsar/pom.xml +++ b/integration-tests/reactive-messaging-pulsar/pom.xml @@ -73,7 +73,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-messaging-rabbitmq-devservices/pom.xml b/integration-tests/reactive-messaging-rabbitmq-devservices/pom.xml index da4a59ea98093..cf1756073975f 100644 --- a/integration-tests/reactive-messaging-rabbitmq-devservices/pom.xml +++ b/integration-tests/reactive-messaging-rabbitmq-devservices/pom.xml @@ -53,7 +53,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-messaging-rabbitmq-dyn/pom.xml b/integration-tests/reactive-messaging-rabbitmq-dyn/pom.xml index e46ccf5be0bd5..abf215f7ef3c6 100644 --- a/integration-tests/reactive-messaging-rabbitmq-dyn/pom.xml +++ b/integration-tests/reactive-messaging-rabbitmq-dyn/pom.xml @@ -53,7 +53,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-messaging-rabbitmq/pom.xml b/integration-tests/reactive-messaging-rabbitmq/pom.xml index 802395ed095f6..746ff33d38461 100644 --- a/integration-tests/reactive-messaging-rabbitmq/pom.xml +++ b/integration-tests/reactive-messaging-rabbitmq/pom.xml @@ -53,7 +53,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-mssql-client/pom.xml b/integration-tests/reactive-mssql-client/pom.xml index 252946fce9816..d4b9b0c18df7c 100644 --- a/integration-tests/reactive-mssql-client/pom.xml +++ b/integration-tests/reactive-mssql-client/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-mysql-client/pom.xml b/integration-tests/reactive-mysql-client/pom.xml index f25fd847d1edb..92a3e42584673 100644 --- a/integration-tests/reactive-mysql-client/pom.xml +++ b/integration-tests/reactive-mysql-client/pom.xml @@ -46,7 +46,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-oracle-client/pom.xml b/integration-tests/reactive-oracle-client/pom.xml index 310f5a6345dc6..ff6b3913ee081 100644 --- a/integration-tests/reactive-oracle-client/pom.xml +++ b/integration-tests/reactive-oracle-client/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/reactive-pg-client/pom.xml b/integration-tests/reactive-pg-client/pom.xml index 14e8880b3ba0c..50d9d8fa2f371 100644 --- a/integration-tests/reactive-pg-client/pom.xml +++ b/integration-tests/reactive-pg-client/pom.xml @@ -30,12 +30,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/redis-cache/pom.xml b/integration-tests/redis-cache/pom.xml index 79bb3b2a30163..e54ba2a811e02 100644 --- a/integration-tests/redis-cache/pom.xml +++ b/integration-tests/redis-cache/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/redis-client/pom.xml b/integration-tests/redis-client/pom.xml index a323134add967..aa07fc88c5c81 100644 --- a/integration-tests/redis-client/pom.xml +++ b/integration-tests/redis-client/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/redis-devservices/pom.xml b/integration-tests/redis-devservices/pom.xml index 5df531435c424..5ff00b9bbedd5 100644 --- a/integration-tests/redis-devservices/pom.xml +++ b/integration-tests/redis-devservices/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -35,7 +35,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/rest-client-reactive-http2/pom.xml b/integration-tests/rest-client-reactive-http2/pom.xml index 22ad4c221a303..5580f0fbfdffb 100644 --- a/integration-tests/rest-client-reactive-http2/pom.xml +++ b/integration-tests/rest-client-reactive-http2/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/rest-client-reactive-kotlin-serialization-with-validator/pom.xml b/integration-tests/rest-client-reactive-kotlin-serialization-with-validator/pom.xml index bb2bf24bc2f16..b070bef3c537f 100644 --- a/integration-tests/rest-client-reactive-kotlin-serialization-with-validator/pom.xml +++ b/integration-tests/rest-client-reactive-kotlin-serialization-with-validator/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/rest-client-reactive-kotlin-serialization/pom.xml b/integration-tests/rest-client-reactive-kotlin-serialization/pom.xml index 9e64aae9e61ec..4087c3d7753fc 100644 --- a/integration-tests/rest-client-reactive-kotlin-serialization/pom.xml +++ b/integration-tests/rest-client-reactive-kotlin-serialization/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/rest-client-reactive-multipart/pom.xml b/integration-tests/rest-client-reactive-multipart/pom.xml index 00cce97b48162..7fb78a991bd96 100644 --- a/integration-tests/rest-client-reactive-multipart/pom.xml +++ b/integration-tests/rest-client-reactive-multipart/pom.xml @@ -26,7 +26,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/rest-client-reactive-stork/pom.xml b/integration-tests/rest-client-reactive-stork/pom.xml index b84cee3058bd2..7b430b5650dbb 100644 --- a/integration-tests/rest-client-reactive-stork/pom.xml +++ b/integration-tests/rest-client-reactive-stork/pom.xml @@ -52,7 +52,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/rest-client-reactive/pom.xml b/integration-tests/rest-client-reactive/pom.xml index e43d651167567..06dfe6256e8dd 100644 --- a/integration-tests/rest-client-reactive/pom.xml +++ b/integration-tests/rest-client-reactive/pom.xml @@ -43,7 +43,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -62,7 +62,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/integration-tests/rest-client-reactive/src/test/java/io/quarkus/it/rest/client/selfsigned/SelfSignedServiceTestResource.java b/integration-tests/rest-client-reactive/src/test/java/io/quarkus/it/rest/client/selfsigned/SelfSignedServiceTestResource.java index 2e2a23ba5eb9f..15f1bc8f1e2ad 100644 --- a/integration-tests/rest-client-reactive/src/test/java/io/quarkus/it/rest/client/selfsigned/SelfSignedServiceTestResource.java +++ b/integration-tests/rest-client-reactive/src/test/java/io/quarkus/it/rest/client/selfsigned/SelfSignedServiceTestResource.java @@ -21,7 +21,7 @@ public Map start() { File file = new File("target/certs"); file.mkdirs(); // Generate self-signed certificate - // We do not use the junit 5 plugin to avoid having to annotate all the tests to make sure the certs are + // We do not use the JUnit Jupiter plugin to avoid having to annotate all the tests to make sure the certs are // generated before the tests are run CertificateGenerator generator = new CertificateGenerator(file.toPath(), false); CertificateRequest cr = new CertificateRequest() diff --git a/integration-tests/rest-client-reactive/src/test/java/io/quarkus/it/rest/client/wronghost/BadHostServiceTestResource.java b/integration-tests/rest-client-reactive/src/test/java/io/quarkus/it/rest/client/wronghost/BadHostServiceTestResource.java index 163b2f94f4985..2c290f9910954 100644 --- a/integration-tests/rest-client-reactive/src/test/java/io/quarkus/it/rest/client/wronghost/BadHostServiceTestResource.java +++ b/integration-tests/rest-client-reactive/src/test/java/io/quarkus/it/rest/client/wronghost/BadHostServiceTestResource.java @@ -21,7 +21,7 @@ public Map start() { File file = new File("target/certs"); file.mkdirs(); // Generate self-signed certificate - // We do not use the junit 5 plugin to avoid having to annotate all the tests to make sure the certs are + // We do not use the JUnit Jupiter plugin to avoid having to annotate all the tests to make sure the certs are // generated before the tests are run CertificateGenerator generator = new CertificateGenerator(file.toPath(), false); CertificateRequest cr = new CertificateRequest() diff --git a/integration-tests/rest-client/pom.xml b/integration-tests/rest-client/pom.xml index 20aaf2d16f8d3..5f737ba5edecf 100644 --- a/integration-tests/rest-client/pom.xml +++ b/integration-tests/rest-client/pom.xml @@ -57,7 +57,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/rest-client/src/test/java/io/quarkus/it/rest/client/selfsigned/SelfSignedServiceTestResource.java b/integration-tests/rest-client/src/test/java/io/quarkus/it/rest/client/selfsigned/SelfSignedServiceTestResource.java index 13011706a2688..fac028b75ce50 100644 --- a/integration-tests/rest-client/src/test/java/io/quarkus/it/rest/client/selfsigned/SelfSignedServiceTestResource.java +++ b/integration-tests/rest-client/src/test/java/io/quarkus/it/rest/client/selfsigned/SelfSignedServiceTestResource.java @@ -26,7 +26,7 @@ public Map start() { File file = new File("target/certs"); file.mkdirs(); // Generate self-signed certificate - // We do not use the junit 5 plugin to avoid having to annotate all the tests to make sure the certs are + // We do not use the JUnit Jupiter plugin to avoid having to annotate all the tests to make sure the certs are // generated before the tests are run CertificateGenerator generator = new CertificateGenerator(file.toPath(), false); try { diff --git a/integration-tests/rest-client/src/test/java/io/quarkus/it/rest/client/trustall/BadHostServiceTestResource.java b/integration-tests/rest-client/src/test/java/io/quarkus/it/rest/client/trustall/BadHostServiceTestResource.java index 206702bec5eb0..02c9a01e8eb8b 100644 --- a/integration-tests/rest-client/src/test/java/io/quarkus/it/rest/client/trustall/BadHostServiceTestResource.java +++ b/integration-tests/rest-client/src/test/java/io/quarkus/it/rest/client/trustall/BadHostServiceTestResource.java @@ -21,7 +21,7 @@ public Map start() { File file = new File("target/certs"); file.mkdirs(); // Generate self-signed certificate - // We do not use the junit 5 plugin to avoid having to annotate all the tests to make sure the certs are + // We do not use the JUnit Jupiter plugin to avoid having to annotate all the tests to make sure the certs are // generated before the tests are run CertificateGenerator generator = new CertificateGenerator(file.toPath(), false); CertificateRequest cr = new CertificateRequest() diff --git a/integration-tests/rest-csrf/pom.xml b/integration-tests/rest-csrf/pom.xml index 772a01b8a30b3..9ca2488b92920 100644 --- a/integration-tests/rest-csrf/pom.xml +++ b/integration-tests/rest-csrf/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/resteasy-jackson/pom.xml b/integration-tests/resteasy-jackson/pom.xml index 0db14bab805ea..ae4c5f91f141a 100644 --- a/integration-tests/resteasy-jackson/pom.xml +++ b/integration-tests/resteasy-jackson/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/resteasy-mutiny/pom.xml b/integration-tests/resteasy-mutiny/pom.xml index 0c745ec1106df..3a7ca308862cb 100644 --- a/integration-tests/resteasy-mutiny/pom.xml +++ b/integration-tests/resteasy-mutiny/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/resteasy-reactive-kotlin/prod-mode/pom.xml b/integration-tests/resteasy-reactive-kotlin/prod-mode/pom.xml index 1cede089776d3..fd59368ed88e0 100644 --- a/integration-tests/resteasy-reactive-kotlin/prod-mode/pom.xml +++ b/integration-tests/resteasy-reactive-kotlin/prod-mode/pom.xml @@ -29,12 +29,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/resteasy-reactive-kotlin/standard/pom.xml b/integration-tests/resteasy-reactive-kotlin/standard/pom.xml index d37324da463ac..cc1affa6b6fb9 100644 --- a/integration-tests/resteasy-reactive-kotlin/standard/pom.xml +++ b/integration-tests/resteasy-reactive-kotlin/standard/pom.xml @@ -54,7 +54,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/scala/src/test/resources/projects/classic-scala/pom.xml b/integration-tests/scala/src/test/resources/projects/classic-scala/pom.xml index 4839d506ea307..d99ca70e6e04d 100644 --- a/integration-tests/scala/src/test/resources/projects/classic-scala/pom.xml +++ b/integration-tests/scala/src/test/resources/projects/classic-scala/pom.xml @@ -50,7 +50,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/security-webauthn/pom.xml b/integration-tests/security-webauthn/pom.xml index da0220a4a95b6..7678e67bf7850 100644 --- a/integration-tests/security-webauthn/pom.xml +++ b/integration-tests/security-webauthn/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/simple with space/pom.xml b/integration-tests/simple with space/pom.xml index d5a06353e709b..ab9b07dcaff98 100644 --- a/integration-tests/simple with space/pom.xml +++ b/integration-tests/simple with space/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/smallrye-config/pom.xml b/integration-tests/smallrye-config/pom.xml index b3c4e30254ad7..033ba228226b4 100644 --- a/integration-tests/smallrye-config/pom.xml +++ b/integration-tests/smallrye-config/pom.xml @@ -56,17 +56,17 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/integration-tests/smallrye-context-propagation/pom.xml b/integration-tests/smallrye-context-propagation/pom.xml index e73c2c6c00c80..3a0f788e4eec4 100644 --- a/integration-tests/smallrye-context-propagation/pom.xml +++ b/integration-tests/smallrye-context-propagation/pom.xml @@ -22,7 +22,7 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/smallrye-graphql-client-keycloak/pom.xml b/integration-tests/smallrye-graphql-client-keycloak/pom.xml index e71a8329d7bf5..ab24e24872efa 100644 --- a/integration-tests/smallrye-graphql-client-keycloak/pom.xml +++ b/integration-tests/smallrye-graphql-client-keycloak/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/smallrye-graphql-client/pom.xml b/integration-tests/smallrye-graphql-client/pom.xml index 5148f77e899f6..b8df4e9da9fc9 100644 --- a/integration-tests/smallrye-graphql-client/pom.xml +++ b/integration-tests/smallrye-graphql-client/pom.xml @@ -32,7 +32,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/smallrye-graphql/pom.xml b/integration-tests/smallrye-graphql/pom.xml index 2f4e00b926ffe..85e91c10e44f9 100644 --- a/integration-tests/smallrye-graphql/pom.xml +++ b/integration-tests/smallrye-graphql/pom.xml @@ -30,7 +30,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/smallrye-jwt-oidc-webapp/pom.xml b/integration-tests/smallrye-jwt-oidc-webapp/pom.xml index 3f25b0aebb88b..5628db3bf26f9 100644 --- a/integration-tests/smallrye-jwt-oidc-webapp/pom.xml +++ b/integration-tests/smallrye-jwt-oidc-webapp/pom.xml @@ -44,7 +44,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/smallrye-jwt-token-propagation/pom.xml b/integration-tests/smallrye-jwt-token-propagation/pom.xml index dfb667050b30c..7dbde1bd08570 100644 --- a/integration-tests/smallrye-jwt-token-propagation/pom.xml +++ b/integration-tests/smallrye-jwt-token-propagation/pom.xml @@ -40,7 +40,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/smallrye-jwt/pom.xml b/integration-tests/smallrye-jwt/pom.xml index fa1c6126dbf20..eef5e6845263f 100644 --- a/integration-tests/smallrye-jwt/pom.xml +++ b/integration-tests/smallrye-jwt/pom.xml @@ -51,7 +51,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/smallrye-metrics/pom.xml b/integration-tests/smallrye-metrics/pom.xml index 501976d466147..7ca0735e76f3f 100644 --- a/integration-tests/smallrye-metrics/pom.xml +++ b/integration-tests/smallrye-metrics/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/smallrye-stork-registration/pom.xml b/integration-tests/smallrye-stork-registration/pom.xml index a352eb1fd1eae..082c872d6a766 100644 --- a/integration-tests/smallrye-stork-registration/pom.xml +++ b/integration-tests/smallrye-stork-registration/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/spring-boot-properties/pom.xml b/integration-tests/spring-boot-properties/pom.xml index 032c4da276691..31c42ee31fd83 100644 --- a/integration-tests/spring-boot-properties/pom.xml +++ b/integration-tests/spring-boot-properties/pom.xml @@ -27,7 +27,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/spring-cloud-config-client/pom.xml b/integration-tests/spring-cloud-config-client/pom.xml index 487775244dd79..eb28c1c051b07 100644 --- a/integration-tests/spring-cloud-config-client/pom.xml +++ b/integration-tests/spring-cloud-config-client/pom.xml @@ -23,7 +23,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/spring-data-jpa/pom.xml b/integration-tests/spring-data-jpa/pom.xml index 7ab4d615e16cf..0ff86d648d331 100644 --- a/integration-tests/spring-data-jpa/pom.xml +++ b/integration-tests/spring-data-jpa/pom.xml @@ -33,17 +33,17 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/integration-tests/spring-data-rest/pom.xml b/integration-tests/spring-data-rest/pom.xml index 84fedea753647..f65c39d89bf9c 100644 --- a/integration-tests/spring-data-rest/pom.xml +++ b/integration-tests/spring-data-rest/pom.xml @@ -31,7 +31,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/spring-di/pom.xml b/integration-tests/spring-di/pom.xml index c55d3a180da0e..68fe309f1c7b1 100644 --- a/integration-tests/spring-di/pom.xml +++ b/integration-tests/spring-di/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/spring-web/pom.xml b/integration-tests/spring-web/pom.xml index 8a934d01d5b8c..99a77863751c4 100644 --- a/integration-tests/spring-web/pom.xml +++ b/integration-tests/spring-web/pom.xml @@ -60,12 +60,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/test-extension/extension-that-defines-junit-test-extensions/deployment/pom.xml b/integration-tests/test-extension/extension-that-defines-junit-test-extensions/deployment/pom.xml index 7757fd6b1d07d..d65beb01135fe 100644 --- a/integration-tests/test-extension/extension-that-defines-junit-test-extensions/deployment/pom.xml +++ b/integration-tests/test-extension/extension-that-defines-junit-test-extensions/deployment/pom.xml @@ -45,12 +45,12 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/test-extension/extension/deployment/pom.xml b/integration-tests/test-extension/extension/deployment/pom.xml index 837bac1991ce1..e7e6f767ba0ff 100644 --- a/integration-tests/test-extension/extension/deployment/pom.xml +++ b/integration-tests/test-extension/extension/deployment/pom.xml @@ -50,12 +50,12 @@ io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/test-extension/tests/pom.xml b/integration-tests/test-extension/tests/pom.xml index 11caaf73bdada..2e20810438bc5 100644 --- a/integration-tests/test-extension/tests/pom.xml +++ b/integration-tests/test-extension/tests/pom.xml @@ -26,12 +26,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/integration-tests/test-extension/tests/src/test/resources-filtered/projects/avro-multimodule-project/module2/pom.xml b/integration-tests/test-extension/tests/src/test/resources-filtered/projects/avro-multimodule-project/module2/pom.xml index 9f71a1b82259f..83b232c602f40 100644 --- a/integration-tests/test-extension/tests/src/test/resources-filtered/projects/avro-multimodule-project/module2/pom.xml +++ b/integration-tests/test-extension/tests/src/test/resources-filtered/projects/avro-multimodule-project/module2/pom.xml @@ -23,7 +23,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-callback-from-extension/pom.xml b/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-callback-from-extension/pom.xml index 7e5c7dec8c51a..e326ab0389e28 100644 --- a/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-callback-from-extension/pom.xml +++ b/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-callback-from-extension/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-parameter-injection/pom.xml b/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-parameter-injection/pom.xml index abe42112c0a1e..3d21534094393 100644 --- a/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-parameter-injection/pom.xml +++ b/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-parameter-injection/pom.xml @@ -39,7 +39,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-template-from-extension-with-bytecode-changes/pom.xml b/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-template-from-extension-with-bytecode-changes/pom.xml index 5d835238c2271..ebe563240e67e 100644 --- a/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-template-from-extension-with-bytecode-changes/pom.xml +++ b/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-template-from-extension-with-bytecode-changes/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-template-from-extension/pom.xml b/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-template-from-extension/pom.xml index 5d835238c2271..ebe563240e67e 100644 --- a/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-template-from-extension/pom.xml +++ b/integration-tests/test-extension/tests/src/test/resources-filtered/projects/project-using-test-template-from-extension/pom.xml @@ -38,7 +38,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/vertx-graphql/pom.xml b/integration-tests/vertx-graphql/pom.xml index f0cec87cf7acf..35e87387a067b 100644 --- a/integration-tests/vertx-graphql/pom.xml +++ b/integration-tests/vertx-graphql/pom.xml @@ -22,7 +22,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/vertx-http-compressors/all/pom.xml b/integration-tests/vertx-http-compressors/all/pom.xml index 2d98e432b5e6e..67f1c82d0dcc4 100644 --- a/integration-tests/vertx-http-compressors/all/pom.xml +++ b/integration-tests/vertx-http-compressors/all/pom.xml @@ -36,7 +36,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/vertx-http-compressors/app/pom.xml b/integration-tests/vertx-http-compressors/app/pom.xml index aab09d203fb9d..58aa9ff35c656 100644 --- a/integration-tests/vertx-http-compressors/app/pom.xml +++ b/integration-tests/vertx-http-compressors/app/pom.xml @@ -18,7 +18,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/vertx-http-compressors/some/pom.xml b/integration-tests/vertx-http-compressors/some/pom.xml index 33b6515217c51..6afc142a1ed79 100644 --- a/integration-tests/vertx-http-compressors/some/pom.xml +++ b/integration-tests/vertx-http-compressors/some/pom.xml @@ -36,7 +36,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/vertx-http/pom.xml b/integration-tests/vertx-http/pom.xml index c78c8565389ee..e82a6c7928650 100644 --- a/integration-tests/vertx-http/pom.xml +++ b/integration-tests/vertx-http/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/vertx-kotlin/pom.xml b/integration-tests/vertx-kotlin/pom.xml index 14a08e162a825..efb6f61cc50d1 100644 --- a/integration-tests/vertx-kotlin/pom.xml +++ b/integration-tests/vertx-kotlin/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/vertx-web-jackson/pom.xml b/integration-tests/vertx-web-jackson/pom.xml index 8f317c1327a7c..61477af018f95 100644 --- a/integration-tests/vertx-web-jackson/pom.xml +++ b/integration-tests/vertx-web-jackson/pom.xml @@ -24,7 +24,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/vertx-web/pom.xml b/integration-tests/vertx-web/pom.xml index 36014f7e5b7f4..d86b131d21e97 100644 --- a/integration-tests/vertx-web/pom.xml +++ b/integration-tests/vertx-web/pom.xml @@ -20,7 +20,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/vertx/pom.xml b/integration-tests/vertx/pom.xml index eb0067c19d80d..b7c43383ffcaa 100644 --- a/integration-tests/vertx/pom.xml +++ b/integration-tests/vertx/pom.xml @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-http-resteasy/pom.xml b/integration-tests/virtual-http-resteasy/pom.xml index f0b6c63ef12e2..81b601df9a2d3 100644 --- a/integration-tests/virtual-http-resteasy/pom.xml +++ b/integration-tests/virtual-http-resteasy/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-http/pom.xml b/integration-tests/virtual-http/pom.xml index 1cab0ad7694d4..4ee6b5192a462 100644 --- a/integration-tests/virtual-http/pom.xml +++ b/integration-tests/virtual-http/pom.xml @@ -45,7 +45,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/amqp-virtual-threads/pom.xml b/integration-tests/virtual-threads/amqp-virtual-threads/pom.xml index c3968ff328807..4597c43f77dc3 100644 --- a/integration-tests/virtual-threads/amqp-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/amqp-virtual-threads/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -59,7 +59,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/integration-tests/virtual-threads/graphql-virtual-threads/pom.xml b/integration-tests/virtual-threads/graphql-virtual-threads/pom.xml index 34e32d864c07b..ed94e8d830523 100644 --- a/integration-tests/virtual-threads/graphql-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/graphql-virtual-threads/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/grpc-virtual-threads/pom.xml b/integration-tests/virtual-threads/grpc-virtual-threads/pom.xml index 48ba5037cfee4..88826bbf08dac 100644 --- a/integration-tests/virtual-threads/grpc-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/grpc-virtual-threads/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/jms-virtual-threads/pom.xml b/integration-tests/virtual-threads/jms-virtual-threads/pom.xml index 37f9d2b6f68e7..82aa869732e6d 100644 --- a/integration-tests/virtual-threads/jms-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/jms-virtual-threads/pom.xml @@ -53,7 +53,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -83,7 +83,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/integration-tests/virtual-threads/kafka-virtual-threads/pom.xml b/integration-tests/virtual-threads/kafka-virtual-threads/pom.xml index 8817ad721acfc..74fccb0a83969 100644 --- a/integration-tests/virtual-threads/kafka-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/kafka-virtual-threads/pom.xml @@ -28,7 +28,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test @@ -58,7 +58,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/integration-tests/virtual-threads/mailer-virtual-threads/pom.xml b/integration-tests/virtual-threads/mailer-virtual-threads/pom.xml index cfc12ecd060e3..44b01de77eb6d 100644 --- a/integration-tests/virtual-threads/mailer-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/mailer-virtual-threads/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/metrics-virtual-threads/pom.xml b/integration-tests/virtual-threads/metrics-virtual-threads/pom.xml index 14d522bdd9405..ae52bf0e20c7a 100644 --- a/integration-tests/virtual-threads/metrics-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/metrics-virtual-threads/pom.xml @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/quartz-virtual-threads/pom.xml b/integration-tests/virtual-threads/quartz-virtual-threads/pom.xml index 018522f36fea7..6e80c5a6f02b9 100644 --- a/integration-tests/virtual-threads/quartz-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/quartz-virtual-threads/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/reactive-routes-virtual-threads/pom.xml b/integration-tests/virtual-threads/reactive-routes-virtual-threads/pom.xml index b3f982c157707..2dc917bd70f29 100644 --- a/integration-tests/virtual-threads/reactive-routes-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/reactive-routes-virtual-threads/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/redis-virtual-threads/pom.xml b/integration-tests/virtual-threads/redis-virtual-threads/pom.xml index 75c2997a027eb..5d4d231abd28b 100644 --- a/integration-tests/virtual-threads/redis-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/redis-virtual-threads/pom.xml @@ -33,7 +33,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/rest-client-reactive-virtual-threads/pom.xml b/integration-tests/virtual-threads/rest-client-reactive-virtual-threads/pom.xml index 1bcae8d4d9faf..9a2b82021deac 100644 --- a/integration-tests/virtual-threads/rest-client-reactive-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/rest-client-reactive-virtual-threads/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/resteasy-reactive-virtual-threads/pom.xml b/integration-tests/virtual-threads/resteasy-reactive-virtual-threads/pom.xml index e549ea4ce3825..b2c5caace100d 100644 --- a/integration-tests/virtual-threads/resteasy-reactive-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/resteasy-reactive-virtual-threads/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/scheduler-virtual-threads/pom.xml b/integration-tests/virtual-threads/scheduler-virtual-threads/pom.xml index 990810dacda5d..83ca6bda51b6b 100644 --- a/integration-tests/virtual-threads/scheduler-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/scheduler-virtual-threads/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/security-webauthn-virtual-threads/pom.xml b/integration-tests/virtual-threads/security-webauthn-virtual-threads/pom.xml index 3d4f0932f4367..6a176557da077 100644 --- a/integration-tests/virtual-threads/security-webauthn-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/security-webauthn-virtual-threads/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/vertx-event-bus-virtual-threads/pom.xml b/integration-tests/virtual-threads/vertx-event-bus-virtual-threads/pom.xml index 3ba923070ef6e..4c667ebb365f5 100644 --- a/integration-tests/virtual-threads/vertx-event-bus-virtual-threads/pom.xml +++ b/integration-tests/virtual-threads/vertx-event-bus-virtual-threads/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/virtual-threads/virtual-threads-disabled/pom.xml b/integration-tests/virtual-threads/virtual-threads-disabled/pom.xml index c5c0210def13c..dd3650ff53fe2 100644 --- a/integration-tests/virtual-threads/virtual-threads-disabled/pom.xml +++ b/integration-tests/virtual-threads/virtual-threads-disabled/pom.xml @@ -25,7 +25,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/web-dependency-locator/pom.xml b/integration-tests/web-dependency-locator/pom.xml index 0dff717428ee2..90eda2c1656d3 100644 --- a/integration-tests/web-dependency-locator/pom.xml +++ b/integration-tests/web-dependency-locator/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/websockets-next/pom.xml b/integration-tests/websockets-next/pom.xml index ba98a606d088d..fb0d54270421d 100644 --- a/integration-tests/websockets-next/pom.xml +++ b/integration-tests/websockets-next/pom.xml @@ -21,7 +21,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/integration-tests/websockets/pom.xml b/integration-tests/websockets/pom.xml index 39eb517276dea..f5d4a687ec557 100644 --- a/integration-tests/websockets/pom.xml +++ b/integration-tests/websockets/pom.xml @@ -29,7 +29,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter test diff --git a/pom.xml b/pom.xml index e5a25f5e0f624..5d7a53b3dc248 100644 --- a/pom.xml +++ b/pom.xml @@ -92,7 +92,7 @@ 2.63.1 0.27.0 - + 0.9.2 diff --git a/relocations/generaterelocations.java b/relocations/generaterelocations.java index 51f7f33270a93..fb21d040d6183 100755 --- a/relocations/generaterelocations.java +++ b/relocations/generaterelocations.java @@ -31,10 +31,15 @@ public class generaterelocations implements Runnable { private static final Map> RELOCATIONS = new TreeMap<>(); static { - Function webjarsLocatorRelocation = a -> Relocation.ofArtifactId(a, a.replace("webjars-locator", "web-dependency-locator"), - "3.11"); - RELOCATIONS.put("quarkus-webjars-locator", webjarsLocatorRelocation); - RELOCATIONS.put("quarkus-webjars-locator-deployment", webjarsLocatorRelocation); + Function junitJupiterRelocation = a -> Relocation.ofArtifactId(a, a.replace("junit5", "junit-jupiter"), + "3.31"); + RELOCATIONS.put("quarkus-junit5", junitJupiterRelocation); + RELOCATIONS.put("quarkus-junit5-component", junitJupiterRelocation); + RELOCATIONS.put("quarkus-junit5-config", junitJupiterRelocation); + RELOCATIONS.put("quarkus-junit5-internal", junitJupiterRelocation); + RELOCATIONS.put("quarkus-junit5-mockito", junitJupiterRelocation); + RELOCATIONS.put("quarkus-junit5-mockito-config", junitJupiterRelocation); + RELOCATIONS.put("quarkus-junit5-component", junitJupiterRelocation); } private static final String RELOCATION_POM_TEMPLATE = "\n" + // diff --git a/relocations/pom.xml b/relocations/pom.xml index 926a646fc4fbc..e09cf9dfa6507 100644 --- a/relocations/pom.xml +++ b/relocations/pom.xml @@ -22,6 +22,12 @@ quarkus-webjars-locator-deployment quarkus-vertx-http-dev-ui-spi quarkus-vertx-http-dev-ui-tests + quarkus-junit5 + quarkus-junit5-component + quarkus-junit5-config + quarkus-junit5-internal + quarkus-junit5-mockito + quarkus-junit5-mockito-config diff --git a/relocations/quarkus-junit5-component/pom.xml b/relocations/quarkus-junit5-component/pom.xml new file mode 100644 index 0000000000000..45f87e5fd934a --- /dev/null +++ b/relocations/quarkus-junit5-component/pom.xml @@ -0,0 +1,23 @@ + + + + quarkus-relocations-parent + io.quarkus + 999-SNAPSHOT + + 4.0.0 + + quarkus-junit5-component + Quarkus - Relocations - quarkus-junit5-component + + + + io.quarkus + quarkus-junit-jupiter-component + ${project.version} + Update the artifactId in your project build file. Refer to https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.31 for more information. + + + \ No newline at end of file diff --git a/relocations/quarkus-junit5-config/pom.xml b/relocations/quarkus-junit5-config/pom.xml new file mode 100644 index 0000000000000..30d50eccb7a93 --- /dev/null +++ b/relocations/quarkus-junit5-config/pom.xml @@ -0,0 +1,23 @@ + + + + quarkus-relocations-parent + io.quarkus + 999-SNAPSHOT + + 4.0.0 + + quarkus-junit5-config + Quarkus - Relocations - quarkus-junit5-config + + + + io.quarkus + quarkus-junit-jupiter-config + ${project.version} + Update the artifactId in your project build file. Refer to https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.31 for more information. + + + \ No newline at end of file diff --git a/relocations/quarkus-junit5-internal/pom.xml b/relocations/quarkus-junit5-internal/pom.xml new file mode 100644 index 0000000000000..7048c732681b6 --- /dev/null +++ b/relocations/quarkus-junit5-internal/pom.xml @@ -0,0 +1,23 @@ + + + + quarkus-relocations-parent + io.quarkus + 999-SNAPSHOT + + 4.0.0 + + quarkus-junit5-internal + Quarkus - Relocations - quarkus-junit5-internal + + + + io.quarkus + quarkus-junit-jupiter-internal + ${project.version} + Update the artifactId in your project build file. Refer to https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.31 for more information. + + + \ No newline at end of file diff --git a/relocations/quarkus-junit5-mockito-config/pom.xml b/relocations/quarkus-junit5-mockito-config/pom.xml new file mode 100644 index 0000000000000..b9d832f7f8729 --- /dev/null +++ b/relocations/quarkus-junit5-mockito-config/pom.xml @@ -0,0 +1,23 @@ + + + + quarkus-relocations-parent + io.quarkus + 999-SNAPSHOT + + 4.0.0 + + quarkus-junit5-mockito-config + Quarkus - Relocations - quarkus-junit5-mockito-config + + + + io.quarkus + quarkus-junit-jupiter-mockito-config + ${project.version} + Update the artifactId in your project build file. Refer to https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.31 for more information. + + + \ No newline at end of file diff --git a/relocations/quarkus-junit5-mockito/pom.xml b/relocations/quarkus-junit5-mockito/pom.xml new file mode 100644 index 0000000000000..36efbba9bd240 --- /dev/null +++ b/relocations/quarkus-junit5-mockito/pom.xml @@ -0,0 +1,23 @@ + + + + quarkus-relocations-parent + io.quarkus + 999-SNAPSHOT + + 4.0.0 + + quarkus-junit5-mockito + Quarkus - Relocations - quarkus-junit5-mockito + + + + io.quarkus + quarkus-junit-jupiter-mockito + ${project.version} + Update the artifactId in your project build file. Refer to https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.31 for more information. + + + \ No newline at end of file diff --git a/relocations/quarkus-junit5/pom.xml b/relocations/quarkus-junit5/pom.xml new file mode 100644 index 0000000000000..c666ed1dd31ba --- /dev/null +++ b/relocations/quarkus-junit5/pom.xml @@ -0,0 +1,23 @@ + + + + quarkus-relocations-parent + io.quarkus + 999-SNAPSHOT + + 4.0.0 + + quarkus-junit5 + Quarkus - Relocations - quarkus-junit5 + + + + io.quarkus + quarkus-junit-jupiter + ${project.version} + Update the artifactId in your project build file. Refer to https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.31 for more information. + + + \ No newline at end of file diff --git a/tcks/resteasy-reactive/pom.xml b/tcks/resteasy-reactive/pom.xml index 5114077a995db..abd8acfea3512 100644 --- a/tcks/resteasy-reactive/pom.xml +++ b/tcks/resteasy-reactive/pom.xml @@ -123,12 +123,12 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter ${project.version} io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal ${project.version} diff --git a/test-framework/common/src/main/java/io/quarkus/test/InjectMock.java b/test-framework/common/src/main/java/io/quarkus/test/InjectMock.java index 1631659386b77..21c29c386a51f 100644 --- a/test-framework/common/src/main/java/io/quarkus/test/InjectMock.java +++ b/test-framework/common/src/main/java/io/quarkus/test/InjectMock.java @@ -13,7 +13,7 @@ * This annotation is supported: *

* The lifecycle and configuration API of the injected mock depends on the type of test being used. *

diff --git a/test-framework/common/src/main/java/io/quarkus/test/common/FacadeClassLoaderProvider.java b/test-framework/common/src/main/java/io/quarkus/test/common/FacadeClassLoaderProvider.java index 1037e88265190..132a85a370c90 100644 --- a/test-framework/common/src/main/java/io/quarkus/test/common/FacadeClassLoaderProvider.java +++ b/test-framework/common/src/main/java/io/quarkus/test/common/FacadeClassLoaderProvider.java @@ -1,7 +1,8 @@ package io.quarkus.test.common; /** - * This internal SPI is used by {@code io.quarkus.test.junit.classloading.FacadeClassLoader} from quarkus-junit5 to extend its + * This internal SPI is used by {@code io.quarkus.test.junit.classloading.FacadeClassLoader} from quarkus-junit-jupiter to + * extend its * functionality. */ public interface FacadeClassLoaderProvider { diff --git a/test-framework/grpc/pom.xml b/test-framework/grpc/pom.xml index 30fbe18b70f4f..9cf24b4d61ab6 100644 --- a/test-framework/grpc/pom.xml +++ b/test-framework/grpc/pom.xml @@ -42,7 +42,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter diff --git a/test-framework/jacoco/runtime/pom.xml b/test-framework/jacoco/runtime/pom.xml index 6fffa49a22dcf..ea84241ec3cd5 100644 --- a/test-framework/jacoco/runtime/pom.xml +++ b/test-framework/jacoco/runtime/pom.xml @@ -44,12 +44,12 @@ io.quarkus - quarkus-junit5-component + quarkus-junit-jupiter-component true io.quarkus - quarkus-junit5-internal + quarkus-junit-jupiter-internal test diff --git a/test-framework/junit5-component/pom.xml b/test-framework/junit5-component/pom.xml index 5d96735561ebf..8deb1ad60f596 100644 --- a/test-framework/junit5-component/pom.xml +++ b/test-framework/junit5-component/pom.xml @@ -10,8 +10,8 @@ 999-SNAPSHOT - quarkus-junit5-component - Quarkus - Test Framework - JUnit 5 Component Test Framework + quarkus-junit-jupiter-component + Quarkus - Test Framework - JUnit Jupiter Component Test Framework Makes it easy to test Quarkus components and mock their dependencies. @@ -56,7 +56,7 @@ io.quarkus - quarkus-junit5-config + quarkus-junit-jupiter-config io.smallrye.common @@ -70,7 +70,7 @@ io.quarkus - quarkus-junit5-mockito + quarkus-junit-jupiter-mockito test diff --git a/test-framework/junit5-config/pom.xml b/test-framework/junit5-config/pom.xml index 9e5a21c6e54bb..3ec6ec52029c0 100644 --- a/test-framework/junit5-config/pom.xml +++ b/test-framework/junit5-config/pom.xml @@ -10,8 +10,8 @@ 999-SNAPSHOT - quarkus-junit5-config - Quarkus - Test Framework - JUnit 5 Config + quarkus-junit-jupiter-config + Quarkus - Test Framework - JUnit Jupiter Config diff --git a/test-framework/junit5-internal/pom.xml b/test-framework/junit5-internal/pom.xml index ca48dc5bc9369..af8164bdb90a5 100644 --- a/test-framework/junit5-internal/pom.xml +++ b/test-framework/junit5-internal/pom.xml @@ -10,8 +10,8 @@ 999-SNAPSHOT - quarkus-junit5-internal - Quarkus - Test Framework - JUnit 5 Internal Test Framework + quarkus-junit-jupiter-internal + Quarkus - Test Framework - JUnit Jupiter Internal Test Framework A runner for unit tests, intended for testing Quarkus rather than @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5-config + quarkus-junit-jupiter-config io.quarkus diff --git a/test-framework/junit5-mockito-config/pom.xml b/test-framework/junit5-mockito-config/pom.xml index 505bb46ed6138..be925f7944600 100644 --- a/test-framework/junit5-mockito-config/pom.xml +++ b/test-framework/junit5-mockito-config/pom.xml @@ -10,8 +10,8 @@ 999-SNAPSHOT - quarkus-junit5-mockito-config - Quarkus - Test framework - JUnit 5 - Mockito Config + quarkus-junit-jupiter-mockito-config + Quarkus - Test framework - JUnit Jupiter - Mockito Config Contains a MockitoConfiguration that has to be loaded parent-first to work in continuous testing. It is separated from junit5-mockito to minimize the blast radius. diff --git a/test-framework/junit5-mockito/pom.xml b/test-framework/junit5-mockito/pom.xml index 11a97f02ad7e5..2eaad568d36c6 100644 --- a/test-framework/junit5-mockito/pom.xml +++ b/test-framework/junit5-mockito/pom.xml @@ -10,13 +10,13 @@ 999-SNAPSHOT - quarkus-junit5-mockito - Quarkus - Test framework - JUnit 5 - Mockito + quarkus-junit-jupiter-mockito + Quarkus - Test framework - JUnit Jupiter - Mockito io.quarkus - quarkus-junit5 + quarkus-junit-jupiter org.mockito @@ -24,10 +24,10 @@ + and only have to add this dependency (quarkus-junit-jupiter-mockito), but not ...-config. --> io.quarkus - quarkus-junit5-mockito-config + quarkus-junit-jupiter-mockito-config io.quarkus diff --git a/test-framework/junit5/pom.xml b/test-framework/junit5/pom.xml index e15b39e5b9f32..0ec87e6f29bb6 100644 --- a/test-framework/junit5/pom.xml +++ b/test-framework/junit5/pom.xml @@ -10,8 +10,8 @@ 999-SNAPSHOT - quarkus-junit5 - Quarkus - Test Framework - JUnit 5 + quarkus-junit-jupiter + Quarkus - Test Framework - JUnit Jupiter @@ -37,7 +37,7 @@ io.quarkus - quarkus-junit5-config + quarkus-junit-jupiter-config org.junit.jupiter diff --git a/test-framework/junit5/src/main/java/io/quarkus/test/junit/QuarkusTestExtension.java b/test-framework/junit5/src/main/java/io/quarkus/test/junit/QuarkusTestExtension.java index 6bb728ade01c1..eba20db231d16 100644 --- a/test-framework/junit5/src/main/java/io/quarkus/test/junit/QuarkusTestExtension.java +++ b/test-framework/junit5/src/main/java/io/quarkus/test/junit/QuarkusTestExtension.java @@ -47,6 +47,7 @@ import org.junit.jupiter.api.extension.BeforeAllCallback; import org.junit.jupiter.api.extension.BeforeEachCallback; import org.junit.jupiter.api.extension.BeforeTestExecutionCallback; +import org.junit.jupiter.api.extension.DynamicTestInvocationContext; import org.junit.jupiter.api.extension.ExtensionContext; import org.junit.jupiter.api.extension.InvocationInterceptor; import org.junit.jupiter.api.extension.ParameterContext; @@ -859,7 +860,8 @@ public void interceptTestMethod(Invocation invocation, ReflectiveInvocatio } @Override - public void interceptDynamicTest(Invocation invocation, ExtensionContext extensionContext) throws Throwable { + public void interceptDynamicTest(Invocation invocation, DynamicTestInvocationContext invocationContext, + ExtensionContext extensionContext) throws Throwable { // TODO check if this is needed; the earlier interceptor may already have done it if (runningQuarkusApplication == null) { invocation.proceed(); diff --git a/test-framework/junit5/src/main/java/io/quarkus/test/junit/classloading/FacadeClassLoader.java b/test-framework/junit5/src/main/java/io/quarkus/test/junit/classloading/FacadeClassLoader.java index 82ee0b87aff65..c4497802b9096 100644 --- a/test-framework/junit5/src/main/java/io/quarkus/test/junit/classloading/FacadeClassLoader.java +++ b/test-framework/junit5/src/main/java/io/quarkus/test/junit/classloading/FacadeClassLoader.java @@ -94,7 +94,7 @@ public final class FacadeClassLoader extends ClassLoader implements Closeable { // Ideally these would be final, but we initialise them in a try-catch block and sometimes they will be caught - // JUnit extensions can be registered by a service loader - see https://junit.org/junit5/docs/current/user-guide/#extensions-registration + // JUnit extensions can be registered by a service loader - see https://docs.junit.org/current/user-guide/#extensions-registration private boolean isServiceLoaderMechanism; private Method osIsCurrent; diff --git a/test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/VerifyMockitoMocksCallback.java b/test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/VerifyMockitoMocksCallback.java index 023587978d6b8..267719a226360 100644 --- a/test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/VerifyMockitoMocksCallback.java +++ b/test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/VerifyMockitoMocksCallback.java @@ -10,14 +10,14 @@ /** * This callback verifies that {@code @io.quarkus.test.InjectMock} is not declared on a field of a {@code @QuarkusTest} - * unless the {@code quarkus-junit5-mockito} is present. + * unless the {@code quarkus-junit-jupiter-mockito} is present. */ public class VerifyMockitoMocksCallback implements QuarkusTestAfterConstructCallback { @Override public void afterConstruct(Object testInstance) { Class mockitoConfig = loadMockitoConfig(); - if (mockitoConfig == null) { // this means that the quarkus-junit5-mockito dependency was not added + if (mockitoConfig == null) { // this means that the quarkus-junit-jupiter-mockito dependency was not added List injectMockFields = new ArrayList<>(); Class current = testInstance.getClass(); while (current != null) { @@ -30,7 +30,7 @@ public void afterConstruct(Object testInstance) { } if (!injectMockFields.isEmpty()) { throw new IllegalStateException( - "@io.quarkus.test.InjectMock declared on one or more fields of a @QuarkusTest but the quarkus-junit5-mockito dependency is not present: " + "@io.quarkus.test.InjectMock declared on one or more fields of a @QuarkusTest but the quarkus-junit-jupiter-mockito dependency is not present: " + injectMockFields.stream().map(f -> "/n/t- " + f.toString())); } } diff --git a/test-framework/kafka-companion/pom.xml b/test-framework/kafka-companion/pom.xml index 150c6b3ba2fa4..faa65b09c366d 100644 --- a/test-framework/kafka-companion/pom.xml +++ b/test-framework/kafka-companion/pom.xml @@ -58,7 +58,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter org.awaitility diff --git a/test-framework/keycloak-server/pom.xml b/test-framework/keycloak-server/pom.xml index ed2869755b1f0..9f90e689b20a3 100644 --- a/test-framework/keycloak-server/pom.xml +++ b/test-framework/keycloak-server/pom.xml @@ -41,7 +41,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter diff --git a/test-framework/security-jwt/pom.xml b/test-framework/security-jwt/pom.xml index ee3df7bf14cd9..12bcaf273238f 100644 --- a/test-framework/security-jwt/pom.xml +++ b/test-framework/security-jwt/pom.xml @@ -17,7 +17,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter io.quarkus diff --git a/test-framework/security-oidc/pom.xml b/test-framework/security-oidc/pom.xml index 27aba21bfe3f4..7c5fd2daa2038 100644 --- a/test-framework/security-oidc/pom.xml +++ b/test-framework/security-oidc/pom.xml @@ -17,7 +17,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter io.quarkus diff --git a/test-framework/security-webauthn/pom.xml b/test-framework/security-webauthn/pom.xml index 38923a799df21..9707d3e62d45d 100644 --- a/test-framework/security-webauthn/pom.xml +++ b/test-framework/security-webauthn/pom.xml @@ -17,7 +17,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter io.quarkus diff --git a/test-framework/security/pom.xml b/test-framework/security/pom.xml index 5eeec97ddb26e..f283c0ec04ecb 100644 --- a/test-framework/security/pom.xml +++ b/test-framework/security/pom.xml @@ -17,7 +17,7 @@ io.quarkus - quarkus-junit5 + quarkus-junit-jupiter io.quarkus