Interface PlatformConfig


@ConfigMapping(prefix="quarkus.platform") @ConfigRoot(phase=BUILD_TIME) public interface PlatformConfig
Platform

This is used currently only to suppress warnings about unknown properties when the user supplies something like: -Dquarkus.platform.group-id=someGroup TODO refactor code to actually use these values

  • Method Summary

    Modifier and Type
    Method
    Description
    artifactId of the platform to use
    groupId of the platform to use
    version of the platform to use
  • Method Details

    • groupId

      @WithDefault("io.quarkus.platform") String groupId()
      groupId of the platform to use
    • artifactId

      @WithDefault("quarkus-bom") String artifactId()
      artifactId of the platform to use
    • version

      @WithDefault("999-SNAPSHOT") String version()
      version of the platform to use