Skip to content

Commit

Permalink
Bump jackson.version from 2.15.3 to 2.16.0 (#726)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Nov 17, 2023
1 parent c9f61df commit c22d379
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,17 +209,14 @@ record InitializationEntry(TileArchiveMetadata metadata) implements Entry {}

record FinishEntry(TileArchiveMetadata metadata) implements Entry {}

private interface TileArchiveMetadataMixin {
private record TileArchiveMetadataMixin(

@JsonIgnore(false)
Envelope bounds();
@JsonIgnore(false) Envelope bounds,

@JsonIgnore(false)
CoordinateXY center();
@JsonIgnore(false) CoordinateXY center,

@JsonIgnore(false)
List<LayerAttrStats.VectorLayer> vectorLayers();
}
@JsonIgnore(false) List<LayerAttrStats.VectorLayer> vectorLayers
) {}

@JsonIncludeProperties({"minX", "maxX", "minY", "maxY"})
private abstract static class EnvelopeMixin {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.source.excludeResources>true</maven.source.excludeResources>
<jackson.version>2.15.3</jackson.version>
<jackson.version>2.16.0</jackson.version>
<junit.version>5.10.1</junit.version>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.organization>onthegomap</sonar.organization>
Expand Down

0 comments on commit c22d379

Please sign in to comment.