Interface ManifestCustomizer

All Superinterfaces:
org.springframework.core.Ordered

public interface ManifestCustomizer extends org.springframework.core.Ordered
Interface for customizing the manifest during the post-processing phase.
  • Field Summary

    Fields inherited from interface org.springframework.core.Ordered

    HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    customize(Map<String,Object> yamlStructure, boolean isMojo)
    Customize the manifest.
    default int
     
  • Method Details

    • customize

      void customize(Map<String,Object> yamlStructure, boolean isMojo)
      Customize the manifest.
      Parameters:
      yamlStructure - a map representing the structure of a YAML file, where keys are string identifiers and values represent corresponding YAML elements.
      isMojo - Whether this is part of a maven plugin run
    • getOrder

      default int getOrder()
      Specified by:
      getOrder in interface org.springframework.core.Ordered