Skip to content

Commit

Permalink
Merge pull request #189 from quarkusio/dependabot/maven/quarkus-d5eeb…
Browse files Browse the repository at this point in the history
…9bff9

build(deps): bump the quarkus group across 1 directory with 3 updates
  • Loading branch information
yrodiere authored Nov 4, 2024
2 parents d607588 + 7110fd0 commit 93b2f7a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus.version>3.15.1</quarkus.version>
<quarkus.version>3.16.1</quarkus.version>
<assertj.version>3.26.0</assertj.version>
<quarkus-github-app.version>2.7.0</quarkus-github-app.version>
<skipITs>true</skipITs>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
import java.util.TreeSet;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;

import io.quarkus.runtime.annotations.RegisterForReflection;

@RegisterForReflection(ignoreNested = false) // For deserialization from the GitHub repository
Expand All @@ -36,7 +38,7 @@ public record Buckets(

public record Triage(
String label,
@JsonUnwrapped @JsonProperty(access = JsonProperty.Access.READ_ONLY) Notification notification) {
@JsonIgnore Notification notification) {
// https://stackoverflow.com/a/71539100/6692043
// Also gives us a less verbose constructor for tests
@JsonCreator
Expand All @@ -56,7 +58,7 @@ public record Feedback(
@JsonProperty(required = true) Provided provided) {

public record Needed(
@JsonUnwrapped @JsonProperty(access = JsonProperty.Access.READ_ONLY) Notification notification) {
@JsonIgnore Notification notification) {
// https://stackoverflow.com/a/71539100/6692043
// Also gives us a less verbose constructor for tests
@JsonCreator
Expand All @@ -67,7 +69,7 @@ public Needed(@JsonProperty(required = true) Duration delay,
}

public record Provided(
@JsonUnwrapped @JsonProperty(access = JsonProperty.Access.READ_ONLY) Notification notification) {
@JsonIgnore Notification notification) {
// https://stackoverflow.com/a/71539100/6692043
// Also gives us a less verbose constructor for tests
@JsonCreator
Expand Down Expand Up @@ -114,7 +116,7 @@ public record Participant(

public record Triage(
@JsonDeserialize(as = TreeSet.class) Set<DayOfWeek> days,
@JsonUnwrapped @JsonProperty(access = JsonProperty.Access.READ_ONLY) Participation participation) {
@JsonIgnore Participation participation) {
// https://stackoverflow.com/a/71539100/6692043
@JsonCreator
public Triage(@JsonProperty(required = true) Set<DayOfWeek> days, @JsonProperty(required = true) int maxIssues) {
Expand All @@ -136,7 +138,7 @@ public record Feedback(

public record Stewardship(
@JsonDeserialize(as = TreeSet.class) Set<DayOfWeek> days,
@JsonUnwrapped @JsonProperty(access = JsonProperty.Access.READ_ONLY) Participation participation) {
@JsonIgnore Participation participation) {
// https://stackoverflow.com/a/71539100/6692043
@JsonCreator
public Stewardship(@JsonProperty(required = true) Set<DayOfWeek> days,
Expand Down

0 comments on commit 93b2f7a

Please sign in to comment.