This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo-wikisearch.git
The following commit(s) were added to refs/heads/main by this push: new 09df660 Remove unneeded transitive dependency management 09df660 is described below commit 09df6600adc6859294a19f899fe04d284f001cf1 Author: Christopher Tubbs <ctubb...@apache.org> AuthorDate: Sat May 21 05:48:44 2022 -0400 Remove unneeded transitive dependency management --- pom.xml | 130 ++++------------------------------------------------------------ 1 file changed, 7 insertions(+), 123 deletions(-) diff --git a/pom.xml b/pom.xml index f132844..1d6f650 100644 --- a/pom.xml +++ b/pom.xml @@ -42,30 +42,26 @@ <maven.compiler.target>1.8</maven.compiler.target> <version.accumulo>2.0.1</version.accumulo> <version.collections>3.2.2</version.collections> - <version.commons-codec>1.5</version.commons-codec> <version.commons-configuration>1.10</version.commons-configuration> - <version.commons-configuration2>2.5</version.commons-configuration2> <version.commons-jexl>2.0.1</version.commons-jexl> <version.commons-lang>2.4</version.commons-lang> - <version.commons-lang3>3.9</version.commons-lang3> - <version.ejb-spec-api>1.0.1.Final</version.ejb-spec-api> - <version.guava>29.0-jre</version.guava> <version.hadoop>3.1.1</version.hadoop> - <version.htrace>3.2.0-incubating</version.htrace> - <version.jaxrs>2.1.0.GA</version.jaxrs> - <version.junit>4.13.1</version.junit> <version.kryo>1.04</version.kryo> - <version.log4j>1.2.16</version.log4j> - <version.log4j-extras>1.0</version.log4j-extras> <version.lucene>7.1.0</version.lucene> <version.lucene-analyzers>4.0.0</version.lucene-analyzers> <version.minlog>1.2</version.minlog> <version.protobuf>3.19.4</version.protobuf> <version.thrift>0.12.0</version.thrift> - <version.zookeeper>3.4.14</version.zookeeper> </properties> <dependencyManagement> <dependencies> + <dependency> + <groupId>org.apache.accumulo</groupId> + <artifactId>accumulo-project</artifactId> + <version>${version.accumulo}</version> + <type>pom</type> + <scope>import</scope> + </dependency> <dependency> <groupId>javaee</groupId> <artifactId>javaee-api</artifactId> @@ -82,11 +78,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.htrace</groupId> - <artifactId>htrace-core</artifactId> - <version>${version.htrace}</version> - </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> @@ -97,47 +88,6 @@ <artifactId>commons-collections</artifactId> <version>${version.collections}</version> </dependency> - <dependency> - <groupId>commons-io</groupId> - <artifactId>commons-io</artifactId> - <version>2.5</version> - </dependency> - <dependency> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - <version>1.1.1</version> - </dependency> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-math3</artifactId> - <version>3.6.1</version> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>${version.junit}</version> - </dependency> - <dependency> - <groupId>org.apache.zookeeper</groupId> - <artifactId>zookeeper</artifactId> - <version>${version.zookeeper}</version> - <exclusions> - <exclusion> - <groupId>jline</groupId> - <artifactId>jline</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - <version>${version.log4j}</version> - </dependency> - <dependency> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - <version>${version.guava}</version> - </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> @@ -158,27 +108,6 @@ <artifactId>jersey-core</artifactId> <version>1.11</version> </dependency> - <dependency> - <groupId>com.sun.jersey</groupId> - <artifactId>jersey-server</artifactId> - <version>1.11</version> - <exclusions> - <exclusion> - <groupId>asm</groupId> - <artifactId>asm</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <version>${version.commons-codec}</version> - </dependency> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-configuration2</artifactId> - <version>${version.commons-configuration2}</version> - </dependency> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> @@ -189,21 +118,6 @@ <artifactId>commons-lang</artifactId> <version>${version.commons-lang}</version> </dependency> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-lang3</artifactId> - <version>${version.commons-lang3}</version> - </dependency> - <dependency> - <groupId>org.apache.accumulo</groupId> - <artifactId>accumulo-core</artifactId> - <version>${version.accumulo}</version> - </dependency> - <dependency> - <groupId>org.apache.accumulo</groupId> - <artifactId>accumulo-trace</artifactId> - <version>${version.accumulo}</version> - </dependency> <dependency> <groupId>org.apache.accumulo</groupId> <artifactId>wikisearch-ingest</artifactId> @@ -251,36 +165,6 @@ <artifactId>checker-qual</artifactId> <version>2.11.1</version> </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - <version>1.7.30</version> - </dependency> - <dependency> - <groupId>org.codehaus.jackson</groupId> - <artifactId>jackson-core-asl</artifactId> - <version>1.9.13</version> - </dependency> - <dependency> - <groupId>org.codehaus.jackson</groupId> - <artifactId>jackson-mapper-asl</artifactId> - <version>1.9.13</version> - </dependency> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-annotations</artifactId> - <version>2.7.8</version> - </dependency> - <dependency> - <groupId>com.google.code.gson</groupId> - <artifactId>gson</artifactId> - <version>2.9.0</version> - </dependency> - <dependency> - <groupId>commons-beanutils</groupId> - <artifactId>commons-beanutils</artifactId> - <version>1.9.4</version> - </dependency> </dependencies> </dependencyManagement> <repositories>