HHH-11024 - Exception still thrown when dropping schema with a managed connection - exclude any arq+wf tests from JDK 9 builds

This commit is contained in:
Steve Ebersole 2016-08-08 15:53:55 -05:00
parent 7038b3e983
commit 6c005239d4
1 changed files with 5 additions and 0 deletions

View File

@ -227,6 +227,11 @@ if ( JavaVersion.current().isJava9Compatible() ) {
exclude 'org/hibernate/jpa/test/enhancement/runtime/JpaRuntimeEnhancementTest.class'
exclude 'org/hibernate/test/bytecode/enhancement/EnhancerTest.class'
exclude 'org/hibernate/test/bytecode/enhancement/basic/BasicInSessionTest.class'
// also, any tests using Arquillian for in-container testing with WildFly currently
// need to be excluded because WildFly does not yet work with Java 9
exclude 'org/hibernate/test/wf/ddl/**'
exclude 'org/hibernate/jpa/test/cdi/**'
}
}