-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump org.apache.zookeeper:zookeeper from 3.8.0 to 3.8.4
Bumps org.apache.zookeeper:zookeeper from 3.8.0 to 3.8.4. --- updated-dependencies: - dependency-name: org.apache.zookeeper:zookeeper dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
fb7480c
commit f85bad7
Showing
15 changed files
with
1,731 additions
and
8 deletions.
There are no files selected for viewing
Submodule accumulo-utils
deleted from
6c09a4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,241 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>gov.nsa.datawave.microservice</groupId> | ||
<artifactId>datawave-microservice-parent</artifactId> | ||
<version>3.0.4</version> | ||
<relativePath>../../../microservices/microservice-parent/pom.xml</relativePath> | ||
</parent> | ||
<artifactId>accumulo-utils</artifactId> | ||
<version>3.0.2-SNAPSHOT</version> | ||
<url>https://code.nsa.gov/datawave-accumulo-utils</url> | ||
<licenses> | ||
<license> | ||
<name>The Apache License, Version 2.0</name> | ||
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:https://github.com/NationalSecurityAgency/datawave-accumulo-utils.git</connection> | ||
<developerConnection>scm:git:[email protected]:NationalSecurityAgency/datawave-accumulo-utils.git</developerConnection> | ||
<tag>HEAD</tag> | ||
<url>https://github.com/NationalSecurityAgency/datawave-accumulo-utils</url> | ||
</scm> | ||
<properties> | ||
<version.accumulo>2.1.1</version.accumulo> | ||
<version.authorization-api>3.0.0</version.authorization-api> | ||
<version.commons-beanutils>1.9.4</version.commons-beanutils> | ||
<version.commons-collections>4.4</version.commons-collections> | ||
<version.dropwizard>4.1.2</version.dropwizard> | ||
<version.guava>28.1-jre</version.guava> | ||
<version.in-memory-accumulo>3.0.1</version.in-memory-accumulo> | ||
<version.slf4j>1.7.29</version.slf4j> | ||
<!-- snappy and dropwizard required to allow miniaccumulo to work with upgraded zookeeper --> | ||
<version.snappy>1.1.7</version.snappy> | ||
<version.spring>5.3.5</version.spring> | ||
<version.zookeeper>3.8.4</version.zookeeper> | ||
</properties> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>${version.guava}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-beanutils</groupId> | ||
<artifactId>commons-beanutils</artifactId> | ||
<version>${version.commons-beanutils}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>gov.nsa.datawave.microservice</groupId> | ||
<artifactId>authorization-api</artifactId> | ||
<version>${version.authorization-api}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.dropwizard.metrics</groupId> | ||
<artifactId>metrics-core</artifactId> | ||
<version>${version.dropwizard}</version> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>slf4j-api</artifactId> | ||
<groupId>org.slf4j</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.accumulo</groupId> | ||
<artifactId>accumulo-core</artifactId> | ||
<version>${version.accumulo}</version> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>*</artifactId> | ||
<groupId>org.eclipse.jetty</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>guava</artifactId> | ||
<groupId>com.google.guava</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>hadoop-mapreduce-client-app</artifactId> | ||
<groupId>org.apache.hadoop</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>hadoop-mapreduce-client-core</artifactId> | ||
<groupId>org.apache.hadoop</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>hadoop-mapreduce-client-jobclient</artifactId> | ||
<groupId>org.apache.hadoop</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>hadoop-yarn-api</artifactId> | ||
<groupId>org.apache.hadoop</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>*</artifactId> | ||
<groupId>org.slf4j</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>commons-logging</artifactId> | ||
<groupId>commons-logging</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>junit</artifactId> | ||
<groupId>junit</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.accumulo</groupId> | ||
<artifactId>accumulo-trace</artifactId> | ||
<version>${version.accumulo}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-collections4</artifactId> | ||
<version>${version.commons-collections}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.zookeeper</groupId> | ||
<artifactId>zookeeper</artifactId> | ||
<version>${version.zookeeper}</version> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
<groupId>org.slf4j</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>log4j</artifactId> | ||
<groupId>log4j</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.xerial.snappy</groupId> | ||
<artifactId>snappy-java</artifactId> | ||
<version>${version.snappy}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-framework-bom</artifactId> | ||
<version>${version.spring}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>gov.nsa.datawave</groupId> | ||
<artifactId>datawave-in-memory-accumulo</artifactId> | ||
<version>${version.in-memory-accumulo}</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>*</artifactId> | ||
<groupId>org.slf4j</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>commons-lang</artifactId> | ||
<groupId>commons-lang</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
<version>${version.slf4j}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-beanutils</groupId> | ||
<artifactId>commons-beanutils</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>gov.nsa.datawave.microservice</groupId> | ||
<artifactId>authorization-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.dropwizard.metrics</groupId> | ||
<artifactId>metrics-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.accumulo</groupId> | ||
<artifactId>accumulo-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-collections4</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.zookeeper</groupId> | ||
<artifactId>zookeeper</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context-support</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.xerial.snappy</groupId> | ||
<artifactId>snappy-java</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-jcl</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>gov.nsa.datawave</groupId> | ||
<artifactId>datawave-in-memory-accumulo</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<repositories> | ||
<repository> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
<id>github-datawave</id> | ||
<url>https://maven.pkg.github.com/NationalSecurityAgency/datawave</url> | ||
</repository> | ||
</repositories> | ||
</project> |
Oops, something went wrong.