This is an automated email from the ASF dual-hosted git repository.
ctubbsii pushed a commit to branch 2.0
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.0 by this push:
new 2ac7c7e Fix WebViewsIT under Java 11
2ac7c7e is described below
commit 2ac7c7e2162c2e73115bb160cc530b8793ed53d2
Author: Christopher Tubbs <[email protected]>
AuthorDate: Mon Jun 17 03:40:07 2019 -0400
Fix WebViewsIT under Java 11
---
.../src/test/java/org/apache/accumulo/monitor/it/WebViewsIT.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/server/monitor/src/test/java/org/apache/accumulo/monitor/it/WebViewsIT.java
b/server/monitor/src/test/java/org/apache/accumulo/monitor/it/WebViewsIT.java
index bdf7e3b..d9c917c 100644
---
a/server/monitor/src/test/java/org/apache/accumulo/monitor/it/WebViewsIT.java
+++
b/server/monitor/src/test/java/org/apache/accumulo/monitor/it/WebViewsIT.java
@@ -54,6 +54,7 @@ import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.powermock.api.easymock.PowerMock;
+import org.powermock.core.classloader.annotations.PowerMockIgnore;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
@@ -63,6 +64,7 @@ import org.powermock.modules.junit4.PowerMockRunner;
@Category(MonitorTests.class)
@RunWith(PowerMockRunner.class)
@PrepareForTest({Monitor.class, Tables.class})
+@PowerMockIgnore({"javax.xml.*"})
public class WebViewsIT extends JerseyTest {
@Override