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

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

The newest version!
package io.quarkus.runtime;

import java.util.Optional;

import io.quarkus.runtime.annotations.ConfigDocPrefix;
import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;

/**
 * Command line.
 * 

* This configuration class is here to avoid warnings when using {@code -Dquarkus.args=...}. */ @ConfigRoot(name = ConfigItem.PARENT, phase = ConfigPhase.RUN_TIME) @ConfigDocPrefix("quarkus.command-line") 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