| Hello Team, I get HV OSGi tests passed with JDK9. Need build a few SNAPSHOT dependencies which are not released yet. 1. build pax-web 6.0.0-SNAPSHOT git clone git@github.com:ops4j/org.ops4j.pax.web.git the master branch mvn clean install -Dmaven.test.skip.exec=true(skip test for fast build) 2. build pax-exam2 4.10.0-SNAPSHOT git clone git@github.com:ops4j/org.ops4j.pax.exam2.git the master branch mvn clean install -Dmaven.test.skip.exec=true(skip test for fast build) 3. build aries proxy impl 1.0.6-SNAPSHOT svn co https://svn.apache.org/repos/asf/aries/trunk/ aries cd aries/proxy/proxy-impl apply the patch from ARIES-1546[1] mvn clean install 4. build Karaf 4.1.0-java9-SNAPSHOT git clone git@github.com:ffang/karaf-1.git the karaf-java9 branch (my experimental branch) mvn clean install (both OK with Java9 and Java8) 5. run the Hibernate Validator OSGi test with Java9 edit osgi/integrationtest/pom.xml change pax.exam.version to 4.10.0-SNAPSHOT change apache.karaf.version to 4.1.0-java9-SNAPSHOT edit osgi/karaf-features/pom.xml change pax.exam.version to 4.10.0-SNAPSHOT change apache.karaf.version to 4.1.0-java9-SNAPSHOT cd hibernate-validator/osgi mvn clean install (can see all tests passed here with Java9) I'm using Java9 build 9-ea+125 BTW. [1]https://issues.apache.org/jira/browse/ARIES-1546 Best Regards Freeman |