Skip to content

Commit

Permalink
Merge pull request #1320 from gsmet/quarkus-3.16.0
Browse files Browse the repository at this point in the history
Upgrade to Quarkus 3.16.0
  • Loading branch information
gsmet authored Oct 23, 2024
2 parents 0463620 + cb19366 commit 38e1652
Show file tree
Hide file tree
Showing 6 changed files with 1,292 additions and 1,282 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,15 @@ public class DevMojo extends AbstractMojo {
@Parameter(defaultValue = "${preventnoverify}")
private boolean preventnoverify = false;

/**
* This value is intended to be set to true when we want to require C2 compilation instead of preventing it from
* ever kicking in.
* Setting this will likely have a small negative effect on startup time and should only be done when it absolutely
* makes sense.
*/
@Parameter(defaultValue = "${forceC2}")
private boolean forceC2 = false;

/**
* Whether changes in the projects that appear to be dependencies of the project containing the application to be launched
* should trigger hot-reload. By default, they do.
Expand Down Expand Up @@ -1247,6 +1256,7 @@ private QuarkusDevModeLauncher newLauncher(String actualDebugPort, String bootst

final MavenDevModeLauncher.Builder builder = MavenDevModeLauncher.builder(java, getLog())
.preventnoverify(preventnoverify)
.forceC2(forceC2)
.buildDir(buildDir)
.outputDir(outputDirectory)
.suspend(suspend)
Expand Down
Loading

0 comments on commit 38e1652

Please sign in to comment.