Skip to content

Commit

Permalink
Remove false positive warning about quarkus.launch.rebuild
Browse files Browse the repository at this point in the history
Fixes: #34815
(cherry picked from commit a6c970a)
  • Loading branch information
geoand authored and gsmet committed Jul 20, 2023
1 parent 27905dd commit 49fd2c5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions core/runtime/src/main/java/io/quarkus/runtime/LaunchConfig.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package io.quarkus.runtime;

import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;
import io.smallrye.config.WithDefault;

@ConfigMapping(prefix = "quarkus.launch")
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public interface LaunchConfig {

/**
* If set to true, Quarkus will perform re-augmentation (assuming the {@code mutable-jar} package type is used)
*/
@WithDefault("false")
boolean rebuild();
}

0 comments on commit 49fd2c5

Please sign in to comment.