Skip to content

Commit 88826c8

Browse files
committed
Add dependency management for Jackson 3.
Closes #2594
1 parent 8c190d9 commit 88826c8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

parent/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@
110110
<guava>31.1-jre</guava>
111111
<hamcrest>1.3</hamcrest>
112112
<jackson>2.19.0</jackson>
113+
<jackson3>3.0.0-rc4</jackson3>
113114
<jakarta-annotation-api>2.0.0</jakarta-annotation-api>
114115
<jaxb>3.0.1</jaxb>
115116
<jacoco>0.8.13</jacoco>
@@ -990,17 +991,9 @@
990991
<profile>
991992
<id>jackson-next</id>
992993
<properties>
993-
<jackson>2.15.2</jackson>
994+
<jackson>2.19.0</jackson>
995+
<jackson3>3.0.0</jackson3>
994996
</properties>
995-
<repositories>
996-
<repository>
997-
<id>spring-snapshot</id>
998-
<url>https://repo.spring.io/snapshot</url>
999-
<snapshots>
1000-
<enabled>true</enabled>
1001-
</snapshots>
1002-
</repository>
1003-
</repositories>
1004997
</profile>
1005998

1006999
<profile>
@@ -1073,6 +1066,13 @@
10731066
<type>pom</type>
10741067
<scope>import</scope>
10751068
</dependency>
1069+
<dependency>
1070+
<groupId>tools.jackson</groupId>
1071+
<artifactId>jackson-bom</artifactId>
1072+
<version>${jackson3}</version>
1073+
<type>pom</type>
1074+
<scope>import</scope>
1075+
</dependency>
10761076
<dependency>
10771077
<groupId>org.junit</groupId>
10781078
<artifactId>junit-bom</artifactId>

0 commit comments

Comments
 (0)