Skip to content

Commit

Permalink
Merge pull request #1134 from gsmet/quarkus-3.8.2
Browse files Browse the repository at this point in the history
Upgrade to Quarkus 3.8.2
  • Loading branch information
gsmet committed Mar 7, 2024
2 parents 8125659 + 86f60cb commit dc597f8
Show file tree
Hide file tree
Showing 7 changed files with 1,955 additions and 1,908 deletions.
2 changes: 1 addition & 1 deletion generated-platform-project/quarkus-camel/bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@
<dependency>
<groupId>io.smallrye.reactive</groupId>
<artifactId>smallrye-reactive-messaging-camel</artifactId>
<version>4.16.2</version>
<version>4.18.0</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,13 @@ private String handleAutoCompile() throws MojoExecutionException {
continue;
}
for (PluginExecution e : p.getExecutions()) {
if (e.getPhase() != null && !PRE_DEV_MODE_PHASES.contains(e.getPhase())) {
// skip executions with phases post quarkus:dev, such as install, deploy, site, etc
if (getLog().isDebugEnabled()) {
getLog().debug("Skipping " + e.getId() + " of " + p.getId());
}
continue;
}
String goalPrefix = null;
if (!e.getGoals().isEmpty()) {
goalPrefix = getMojoDescriptor(p, e.getGoals().get(0)).getPluginDescriptor().getGoalPrefix();
Expand Down

0 comments on commit dc597f8

Please sign in to comment.