io.kokuwa.maven.helm.pojo.HelmChart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of helm-maven-plugin Show documentation
Show all versions of helm-maven-plugin Show documentation
A plugin for executing HELM (https://docs.helm.sh).
The newest version!
package io.kokuwa.maven.helm.pojo;
import java.util.List;
import lombok.Data;
/**
* POJO for "Chart.yaml" file and its dependencies.
*
* @since 6.10.0
*/
@Data
public class HelmChart {
private String apiVersion;
private String name;
private String version;
private List dependencies;
@Data
public static class Dependency {
private String name;
private String repository;
private String version;
/** Determines whether the repository/version will be updated for a given dependency. */
private boolean overwrite = false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy