diff --git a/api/src/main/java/org/bf2/operator/resources/v1alpha1/ProfileCapacity.java b/api/src/main/java/org/bf2/operator/resources/v1alpha1/ProfileCapacity.java index 38abc213e..8b97394f0 100644 --- a/api/src/main/java/org/bf2/operator/resources/v1alpha1/ProfileCapacity.java +++ b/api/src/main/java/org/bf2/operator/resources/v1alpha1/ProfileCapacity.java @@ -3,6 +3,8 @@ import com.fasterxml.jackson.annotation.JsonInclude; import io.sundr.builder.annotations.Buildable; import lombok.EqualsAndHashCode; +import lombok.Getter; +import lombok.Setter; import lombok.ToString; @Buildable( @@ -10,26 +12,12 @@ editableEnabled = false) @ToString @EqualsAndHashCode +@Getter +@Setter @JsonInclude(JsonInclude.Include.NON_NULL) public class ProfileCapacity { private Integer maxUnits; private Integer remainingUnits; - public Integer getMaxUnits() { - return maxUnits; - } - - public void setMaxUnits(Integer max) { - this.maxUnits = max; - } - - public Integer getRemainingUnits() { - return remainingUnits; - } - - public void setRemainingUnits(Integer remaining) { - this.remainingUnits = remaining; - } - } diff --git a/pom.xml b/pom.xml index 168c6ade5..016380668 100644 --- a/pom.xml +++ b/pom.xml @@ -331,12 +331,20 @@ - - default-report - - report - - + + default-report + verify + + report-aggregate + + + ${project.reporting.outputDirectory}/jacoco + true + + XML + + + jacoco-check