Skip to content

Commit 9806032

Browse files
authored
build(deps): Fix Jackson version to max allowed by JSII (#1770)
1 parent 539fe7e commit 9806032

File tree

1 file changed

+9
-1
lines changed
  • examples/powertools-examples-core/cdk/infra

1 file changed

+9
-1
lines changed

examples/powertools-examples-core/cdk/infra/pom.xml

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
<version>1.18.0</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10-
<cdk.version>2.130.0</cdk.version>
10+
<cdk.version>2.178.1</cdk.version>
1111
<constructs.version>[10.0.0,11.0.0)</constructs.version>
12+
<jackson.version>2.14.0</jackson.version>
1213
<junit.version>5.10.0</junit.version>
1314
</properties>
1415
<build>
@@ -41,6 +42,13 @@
4142
</plugins>
4243
</build>
4344
<dependencies>
45+
<!-- Transitive Dep -->
46+
<dependency>
47+
<groupId>com.fasterxml.jackson.core</groupId>
48+
<artifactId>jackson-databind</artifactId>
49+
<version>${jackson.version}</version>
50+
</dependency>
51+
4452
<!-- AWS Cloud Development Kit -->
4553
<dependency>
4654
<groupId>software.amazon.awscdk</groupId>

0 commit comments

Comments
 (0)