All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.runtime.LaunchConfig Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
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();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy