Skip to content

Commit

Permalink
Merge pull request #34859 from geoand/#34815
Browse files Browse the repository at this point in the history
Remove false positive warning about quarkus.launch.rebuild
  • Loading branch information
gastaldi authored Jul 19, 2023
2 parents f8ef115 + a6c970a commit a80f673
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 a80f673

Please sign in to comment.