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

io.quarkus.runtime.CommandLineRuntimeConfig 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.ConfigItem;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;

/**
 * This configuration class is here to avoid warnings when using {@code -Dquarkus.args=...}.
 */
@ConfigRoot(name = ConfigItem.PARENT, phase = ConfigPhase.RUN_TIME)
public class CommandLineRuntimeConfig {

    /**
     * The arguments passed to the command line.
     * 

* We don't make it a list as the args are separated by a space, not a comma. */ @ConfigItem public Optional args; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy