Skip to content

Commit 7cd920c

Browse files
committed
deps: use quarkus-junit and reduce verbosity
1 parent 26ae2e5 commit 7cd920c

9 files changed

Lines changed: 10 additions & 11 deletions

File tree

build/build-parent/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,6 @@
555555
<configuration>
556556
<failOnWarning>true</failOnWarning>
557557
<ignoreNonCompile>true</ignoreNonCompile>
558-
<verbose>true</verbose>
559558
</configuration>
560559
</execution>
561560
</executions>

docs/src/modules/ROOT/pages/quickstart/quarkus-vehicle-routing/quarkus-vehicle-routing-quickstart.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ Add some dependencies in your `pom.xml`:
535535
----
536536
<dependency>
537537
<groupId>io.quarkus</groupId>
538-
<artifactId>quarkus-junit5</artifactId>
538+
<artifactId>quarkus-junit</artifactId>
539539
<scope>test</scope>
540540
</dependency>
541541
----

docs/src/modules/ROOT/pages/quickstart/quarkus/quarkus-quickstart.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ Add the subsequent dependency in your `pom.xml`:
236236
----
237237
<dependency>
238238
<groupId>io.quarkus</groupId>
239-
<artifactId>quarkus-junit5</artifactId>
239+
<artifactId>quarkus-junit</artifactId>
240240
<scope>test</scope>
241241
</dependency>
242242
----
@@ -247,7 +247,7 @@ Gradle::
247247
Add the subsequent dependency to your `build.gradle`:
248248
[source,groovy,subs=attributes+]
249249
----
250-
testImplementation "io.quarkus:quarkus-junit5"
250+
testImplementation "io.quarkus:quarkus-junit"
251251
----
252252
--
253253
====

quarkus-integration/quarkus-benchmark/deployment/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
<dependency>
3535
<groupId>io.quarkus</groupId>
36-
<artifactId>quarkus-junit5-internal</artifactId>
36+
<artifactId>quarkus-junit-internal</artifactId>
3737
<scope>test</scope>
3838
</dependency>
3939
<dependency>

quarkus-integration/quarkus-benchmark/integration-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<!-- test dependencies -->
4141
<dependency>
4242
<groupId>io.quarkus</groupId>
43-
<artifactId>quarkus-junit5</artifactId>
43+
<artifactId>quarkus-junit</artifactId>
4444
<scope>test</scope>
4545
</dependency>
4646
<dependency>

quarkus-integration/quarkus-jackson/integration-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<!-- test dependencies -->
4545
<dependency>
4646
<groupId>io.quarkus</groupId>
47-
<artifactId>quarkus-junit5</artifactId>
47+
<artifactId>quarkus-junit</artifactId>
4848
<scope>test</scope>
4949
</dependency>
5050
<dependency>

quarkus-integration/quarkus/deployment/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
<dependency>
3232
<groupId>io.quarkus</groupId>
33-
<artifactId>quarkus-junit5-internal</artifactId>
33+
<artifactId>quarkus-junit-internal</artifactId>
3434
<scope>test</scope>
3535
</dependency>
3636
<dependency>

quarkus-integration/quarkus/devui-integration-test/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</dependency>
4141
<dependency>
4242
<groupId>io.quarkus</groupId>
43-
<artifactId>quarkus-junit5</artifactId>
43+
<artifactId>quarkus-junit</artifactId>
4444
<scope>test</scope>
4545
</dependency>
4646
<dependency>
@@ -50,7 +50,7 @@
5050
</dependency>
5151
<dependency>
5252
<groupId>io.quarkus</groupId>
53-
<artifactId>quarkus-junit5-internal</artifactId>
53+
<artifactId>quarkus-junit-internal</artifactId>
5454
<scope>test</scope>
5555
</dependency>
5656
</dependencies>

quarkus-integration/quarkus/reflection-integration-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<!-- test dependencies -->
3737
<dependency>
3838
<groupId>io.quarkus</groupId>
39-
<artifactId>quarkus-junit5</artifactId>
39+
<artifactId>quarkus-junit</artifactId>
4040
<scope>test</scope>
4141
</dependency>
4242
<dependency>

0 commit comments

Comments
 (0)