This is an automated email from the ASF dual-hosted git repository. dlmarion pushed a commit to branch 1451-external-compactions-feature in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/1451-external-compactions-feature by this push: new e30df53 closes #2081 - exclude unused dependency e30df53 is described below commit e30df53bf25f240260d92c7ef2f69120597100c2 Author: Dave Marion <dlmar...@apache.org> AuthorDate: Wed May 5 15:13:02 2021 +0000 closes #2081 - exclude unused dependency --- test/pom.xml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/test/pom.xml b/test/pom.xml index 0a1c788..ad49aa1 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -63,6 +63,10 @@ <artifactId>commons-io</artifactId> </dependency> <dependency> + <groupId>jakarta.servlet</groupId> + <artifactId>jakarta.servlet-api</artifactId> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> @@ -189,17 +193,18 @@ <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> + <exclusions> + <exclusion> + <groupId>org.eclipse.jetty.toolchain</groupId> + <artifactId>jetty-jakarta-servlet-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-util</artifactId> </dependency> <dependency> - <groupId>org.eclipse.jetty.toolchain</groupId> - <artifactId>jetty-jakarta-servlet-api</artifactId> - <version>5.0.2</version> - </dependency> - <dependency> <groupId>org.jline</groupId> <artifactId>jline</artifactId> </dependency>