Skip to content

Commit 4091e6d

Browse files
committed
Move jackson-bom import to the parent pom
We're now using jackson in several submodules. This ensures we're using consistent versions everywhere.
1 parent 34f390a commit 4091e6d

File tree

4 files changed

+7
-14
lines changed

4 files changed

+7
-14
lines changed

contrib/pom.xml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,6 @@
7373
<scope>test</scope>
7474
</dependency>
7575
</dependencies>
76-
<dependencyManagement>
77-
<dependencies>
78-
<dependency>
79-
<groupId>com.fasterxml.jackson</groupId>
80-
<artifactId>jackson-bom</artifactId>
81-
<version>2.20.1</version>
82-
<type>pom</type>
83-
<scope>import</scope>
84-
</dependency>
85-
</dependencies>
86-
</dependencyManagement>
8776
<build>
8877
<plugins>
8978
<plugin>

docgen/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<dependency>
1515
<groupId>com.fasterxml.jackson.core</groupId>
1616
<artifactId>jackson-databind</artifactId>
17-
<version>2.20.1</version>
1817
</dependency>
1918
</dependencies>
2019
<build>

modules/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,8 @@
112112
<optional>true</optional>
113113
</dependency>
114114
<dependency>
115-
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
116115
<groupId>com.fasterxml.jackson.core</groupId>
117116
<artifactId>jackson-databind</artifactId>
118-
<version>2.20.0</version>
119117
</dependency>
120118
</dependencies>
121119
<build>

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,13 @@ http://maven.apache.org/guides/mini/guide-m1-m2.html
107107
<type>pom</type>
108108
<scope>import</scope>
109109
</dependency>
110+
<dependency>
111+
<groupId>com.fasterxml.jackson</groupId>
112+
<artifactId>jackson-bom</artifactId>
113+
<version>2.20.1</version>
114+
<type>pom</type>
115+
<scope>import</scope>
116+
</dependency>
110117
<dependency>
111118
<groupId>org.eclipse.jetty</groupId>
112119
<artifactId>jetty-bom</artifactId>

0 commit comments

Comments
 (0)