Skip to content

Commit

Permalink
dependency analysis in gitlab
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Gross cogross committed Nov 7, 2024
1 parent 55d92d5 commit a2987fb
Showing 1 changed file with 41 additions and 1 deletion.
42 changes: 41 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@
<spotbugs.excludes.file>${project.basedir}/src/main/spotbugs/excludes.xml</spotbugs.excludes.file>
<version.assertj>3.20.2</version.assertj>
<version.common-utils>3.0.0</version.common-utils>
<version.commons-codec>1.7</version.commons-codec>
<version.commons-lang3>3.12.0</version.commons-lang3>
<version.commons-net>3.6</version.commons-net>
<version.geowave>1.2.0</version.geowave>
<version.guava>28.1-jre</version.guava>
<version.jackson>2.10.1</version.jackson>
<version.jakarta-bind-api>2.3.3</version.jakarta-bind-api>
<version.jaxb>2.3.3</version.jaxb>
<version.jts>1.19.0</version.jts>
<version.protostuff>1.6.2</version.protostuff>
Expand Down Expand Up @@ -121,10 +125,30 @@
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${version.guava}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${version.commons-codec}</version>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
Expand All @@ -133,14 +157,25 @@
<groupId>gov.nsa.datawave.microservice</groupId>
<artifactId>common-utils</artifactId>
</dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-api</artifactId>
<version>${version.protostuff}</version>
</dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-collectionschema</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${version.jakarta-bind-api}</version>
</dependency>
<!--
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-core</artifactId>
</dependency>
</dependency> -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand All @@ -162,6 +197,11 @@
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
Expand Down

0 comments on commit a2987fb

Please sign in to comment.