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 638b3ed commit fe8d086
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
<version.authorization-api>4.0.0</version.authorization-api>
<version.commons-beanutils>1.9.4</version.commons-beanutils>
<version.commons-collections>4.4</version.commons-collections>
<version.commons-lang3>3.12.0</version.commons-lang3>
<version.dropwizard>4.1.2</version.dropwizard>
<version.guava>28.1-jre</version.guava>
<version.hadoop>3.3.5</version.hadoop>
<version.in-memory-accumulo>4.0.0</version.in-memory-accumulo>
<version.slf4j>1.7.29</version.slf4j>
<!-- snappy and dropwizard required to allow miniaccumulo to work with upgraded zookeeper -->
Expand Down Expand Up @@ -193,10 +195,29 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${version.commons-lang3}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client-api</artifactId>
<version>${version.hadoop}</version>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${version.slf4j}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
Expand All @@ -215,6 +236,16 @@
<artifactId>datawave-in-memory-accumulo</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</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 fe8d086

Please sign in to comment.