aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorozinoviev <ozinoviev@solit-clouds.ru>2018-08-27 15:48:52 +0300
committerVolodymyr Vysotskyi <vvovyk@gmail.com>2018-11-26 11:08:20 +0200
commit639be6c1cdb2747e3d4a7d04ce5966d27d1f3102 (patch)
treea321b99f16cd90f38d72aec866a11267a7aba3f9 /contrib
parent6ecaed7e76228bfefdd5dc5c94aff01c16d1e249 (diff)
DRILL-6349: Drill JDBC driver fails on Java 1.9+ with NoClassDefFoundError: sun/misc/VM
closes #1446
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/storage-jdbc/pom.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/storage-jdbc/pom.xml b/contrib/storage-jdbc/pom.xml
index 7de89f08a..ad139d467 100755
--- a/contrib/storage-jdbc/pom.xml
+++ b/contrib/storage-jdbc/pom.xml
@@ -104,7 +104,7 @@
<!-- Because the JDBC tests are somewhat heavyweight, we only run them in the 'verify' phase -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
- <version>2.18.1</version>
+ <version>2.22.0</version>
<configuration>
<forkCount combine.self="override">1</forkCount>
<systemPropertyVariables>
@@ -115,6 +115,7 @@
<includes>
<include>**/*IT.java</include>
</includes>
+ <useSystemClassLoader>false</useSystemClassLoader>
</configuration>
<executions>
<execution>