io.quarkus.runtime.BuilderConfig Maven / Gradle / Ivy
package io.quarkus.runtime;
import java.util.Optional;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;
/**
* This configuration class is here to avoid warnings when using {@code -Dquarkus.builder.=...}.
*
* @see io.quarkus.builder.BuildChainBuilder
*/
@ConfigMapping(prefix = "quarkus.builder")
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public interface BuilderConfig {
/**
* Dump the graph output to a file. This is useful for debugging.
*/
Optional graphOutput();
/**
* Whether to log the cause of a conflict.
*/
Optional logConflictCause();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy