Skip to content

Commit 74ce405

Browse files
authored
Merge pull request #45109 from aloubyansky/quarkus-dev-mode-resolver-fix
Configure the resolver for dev mode in QuarkusDevModeTest
2 parents b235baa + a84b285 commit 74ce405

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

integration-tests/logging-panache/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@
3030
<artifactId>quarkus-jdbc-h2</artifactId>
3131
<scope>test</scope>
3232
</dependency>
33-
<dependency>
34-
<groupId>io.quarkus</groupId>
35-
<artifactId>quarkus-agroal-dev</artifactId>
36-
<scope>test</scope>
37-
</dependency>
3833
<dependency>
3934
<groupId>io.quarkus</groupId>
4035
<artifactId>quarkus-resteasy</artifactId>

test-framework/junit5-internal/src/main/java/io/quarkus/test/QuarkusDevModeTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@ private static ApplicationModel resolveOriginalAppModel() {
442442
try {
443443
return BootstrapAppModelFactory.newInstance()
444444
.setTest(true)
445+
.setDevMode(true)
445446
.setProjectRoot(Path.of("").normalize().toAbsolutePath())
446447
.resolveAppModel()
447448
.getApplicationModel();

0 commit comments

Comments
 (0)