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

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

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