Interface NativeConfig.Bundle

Enclosing interface:
NativeConfig

public static interface NativeConfig.Bundle
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Generates the native-image bundle through a dry-run build, skipping the actual native-image build.
    Set to enable native-image bundle generation.
    Set to define the native-image bundle name.
  • Method Details

    • enabled

      Optional<Boolean> enabled()
      Set to enable native-image bundle generation.
    • dryRun

      @WithDefault("false") boolean dryRun()
      Generates the native-image bundle through a dry-run build, skipping the actual native-image build.
    • name

      Optional<String> name()
      Set to define the native-image bundle name. If not set the default name will match the native-executable's name suffixed by `.nib`. i.e. `{project.name}-{project.version}-runner.nib`