io.kokuwa.maven.helm.github.ReleaseResponse 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.github;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* Response for fetching Github releases.
*
* @author Stephan Schnabel
* @since 6.1.0
*/
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class ReleaseResponse {
@JsonProperty(value = "tag_name", required = true)
private String tagName;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy