Skip to content

Commit dc597f8

Browse files
authored
Merge pull request #1134 from gsmet/quarkus-3.8.2
Upgrade to Quarkus 3.8.2
2 parents 8125659 + 86f60cb commit dc597f8

File tree

7 files changed

+1955
-1908
lines changed

7 files changed

+1955
-1908
lines changed

generated-platform-project/quarkus-camel/bom/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@
868868
<dependency>
869869
<groupId>io.smallrye.reactive</groupId>
870870
<artifactId>smallrye-reactive-messaging-camel</artifactId>
871-
<version>4.16.2</version>
871+
<version>4.18.0</version>
872872
</dependency>
873873
<dependency>
874874
<groupId>io.swagger.core.v3</groupId>

generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DevMojo.java

+7
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,13 @@ private String handleAutoCompile() throws MojoExecutionException {
588588
continue;
589589
}
590590
for (PluginExecution e : p.getExecutions()) {
591+
if (e.getPhase() != null && !PRE_DEV_MODE_PHASES.contains(e.getPhase())) {
592+
// skip executions with phases post quarkus:dev, such as install, deploy, site, etc
593+
if (getLog().isDebugEnabled()) {
594+
getLog().debug("Skipping " + e.getId() + " of " + p.getId());
595+
}
596+
continue;
597+
}
591598
String goalPrefix = null;
592599
if (!e.getGoals().isEmpty()) {
593600
goalPrefix = getMojoDescriptor(p, e.getGoals().get(0)).getPluginDescriptor().getGoalPrefix();

0 commit comments

Comments
 (0)