Skip to content

Commit

Permalink
Not pushing compile in the command actually fixes this test
Browse files Browse the repository at this point in the history
When running mvn compile quarkus:dev, compile is not executed when
restarting dev mode after the pom change. Not specifying compile makes
the compile goal to be run.
  • Loading branch information
gsmet committed Sep 22, 2023
1 parent 9e7b7e6 commit 5465b32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ public void testThatInstrumentationBasedReloadWorks() throws MavenInvocationExce
@Test
public void testThatSourceChangesAreDetectedOnPomChange() throws Exception {
testDir = initProject("projects/classic", "projects/project-classic-run-src-and-pom-change");
runAndCheck();
runAndCheck(false);

// Edit a Java file too
final File javaSource = new File(testDir, "src/main/java/org/acme/HelloResource.java");
Expand Down

0 comments on commit 5465b32

Please sign in to comment.