Skip to content

Commit a2987fb

Browse files
author
Christopher Gross cogross
committed
dependency analysis in gitlab
1 parent 55d92d5 commit a2987fb

File tree

1 file changed

+41
-1
lines changed

1 file changed

+41
-1
lines changed

pom.xml

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,13 @@
2727
<spotbugs.excludes.file>${project.basedir}/src/main/spotbugs/excludes.xml</spotbugs.excludes.file>
2828
<version.assertj>3.20.2</version.assertj>
2929
<version.common-utils>3.0.0</version.common-utils>
30+
<version.commons-codec>1.7</version.commons-codec>
3031
<version.commons-lang3>3.12.0</version.commons-lang3>
3132
<version.commons-net>3.6</version.commons-net>
3233
<version.geowave>1.2.0</version.geowave>
34+
<version.guava>28.1-jre</version.guava>
35+
<version.jackson>2.10.1</version.jackson>
36+
<version.jakarta-bind-api>2.3.3</version.jakarta-bind-api>
3337
<version.jaxb>2.3.3</version.jaxb>
3438
<version.jts>1.19.0</version.jts>
3539
<version.protostuff>1.6.2</version.protostuff>
@@ -121,10 +125,30 @@
121125
</dependencies>
122126
</dependencyManagement>
123127
<dependencies>
128+
<dependency>
129+
<groupId>com.fasterxml.jackson.core</groupId>
130+
<artifactId>jackson-core</artifactId>
131+
<version>${version.jackson}</version>
132+
</dependency>
133+
<dependency>
134+
<groupId>com.fasterxml.jackson.core</groupId>
135+
<artifactId>jackson-databind</artifactId>
136+
<version>${version.jackson}</version>
137+
</dependency>
138+
<dependency>
139+
<groupId>com.google.guava</groupId>
140+
<artifactId>guava</artifactId>
141+
<version>${version.guava}</version>
142+
</dependency>
124143
<dependency>
125144
<groupId>com.sun.xml.bind</groupId>
126145
<artifactId>jaxb-impl</artifactId>
127146
</dependency>
147+
<dependency>
148+
<groupId>commons-codec</groupId>
149+
<artifactId>commons-codec</artifactId>
150+
<version>${version.commons-codec}</version>
151+
</dependency>
128152
<dependency>
129153
<groupId>commons-net</groupId>
130154
<artifactId>commons-net</artifactId>
@@ -133,14 +157,25 @@
133157
<groupId>gov.nsa.datawave.microservice</groupId>
134158
<artifactId>common-utils</artifactId>
135159
</dependency>
160+
<dependency>
161+
<groupId>io.protostuff</groupId>
162+
<artifactId>protostuff-api</artifactId>
163+
<version>${version.protostuff}</version>
164+
</dependency>
136165
<dependency>
137166
<groupId>io.protostuff</groupId>
138167
<artifactId>protostuff-collectionschema</artifactId>
139168
</dependency>
169+
<dependency>
170+
<groupId>jakarta.xml.bind</groupId>
171+
<artifactId>jakarta.xml.bind-api</artifactId>
172+
<version>${version.jakarta-bind-api}</version>
173+
</dependency>
174+
<!--
140175
<dependency>
141176
<groupId>io.protostuff</groupId>
142177
<artifactId>protostuff-core</artifactId>
143-
</dependency>
178+
</dependency> -->
144179
<dependency>
145180
<groupId>org.apache.commons</groupId>
146181
<artifactId>commons-lang3</artifactId>
@@ -162,6 +197,11 @@
162197
<artifactId>assertj-core</artifactId>
163198
<scope>test</scope>
164199
</dependency>
200+
<dependency>
201+
<groupId>org.junit.jupiter</groupId>
202+
<artifactId>junit-jupiter-api</artifactId>
203+
<scope>test</scope>
204+
</dependency>
165205
<dependency>
166206
<groupId>org.junit.jupiter</groupId>
167207
<artifactId>junit-jupiter-engine</artifactId>

0 commit comments

Comments
 (0)