io.quarkus.code.config.PlatformConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-quarkus Show documentation
Show all versions of code-quarkus Show documentation
Customize a Web Interface to generate Quarkus starter projects.
package io.quarkus.code.config;
import io.smallrye.config.ConfigMapping;
import io.smallrye.config.WithName;
import java.util.Optional;
@ConfigMapping(prefix = "io.quarkus.code.quarkus-platforms")
public interface PlatformConfig {
@WithName("reload-cron-expr")
String getReloadCronExpr();
@WithName("registry-id")
Optional getRegistryId();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy