Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 1391C200BD4 for ; Thu, 1 Dec 2016 09:08:20 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 123E4160B0F; Thu, 1 Dec 2016 08:08:20 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 591BF160B0B for ; Thu, 1 Dec 2016 09:08:19 +0100 (CET) Received: (qmail 40053 invoked by uid 500); 1 Dec 2016 08:08:18 -0000 Mailing-List: contact commits-help@karaf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@karaf.apache.org Delivered-To: mailing list commits@karaf.apache.org Received: (qmail 40043 invoked by uid 99); 1 Dec 2016 08:08:18 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2016 08:08:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6A789E09CD; Thu, 1 Dec 2016 08:08:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: gnodet@apache.org To: commits@karaf.apache.org Message-Id: <48c4ea76f5874651bbcb44760a83a66f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: karaf git commit: [KARAF-4847] Cannot start feature pax-jetty with JDK 9 Add missing jar url protocol handler Date: Thu, 1 Dec 2016 08:08:18 +0000 (UTC) archived-at: Thu, 01 Dec 2016 08:08:20 -0000 Repository: karaf Updated Branches: refs/heads/master 88d9480d1 -> 34908fb1d [KARAF-4847] Cannot start feature pax-jetty with JDK 9 Add missing jar url protocol handler Project: http://git-wip-us.apache.org/repos/asf/karaf/repo Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/34908fb1 Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/34908fb1 Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/34908fb1 Branch: refs/heads/master Commit: 34908fb1df416cc7e08a0750d47930078e7b733b Parents: 88d9480 Author: Guillaume Nodet Authored: Thu Dec 1 09:08:11 2016 +0100 Committer: Guillaume Nodet Committed: Thu Dec 1 09:08:11 2016 +0100 ---------------------------------------------------------------------- assemblies/features/base/src/main/resources/resources/bin/karaf | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/karaf/blob/34908fb1/assemblies/features/base/src/main/resources/resources/bin/karaf ---------------------------------------------------------------------- diff --git a/assemblies/features/base/src/main/resources/resources/bin/karaf b/assemblies/features/base/src/main/resources/resources/bin/karaf index 451b85a..c65f4ae 100755 --- a/assemblies/features/base/src/main/resources/resources/bin/karaf +++ b/assemblies/features/base/src/main/resources/resources/bin/karaf @@ -496,6 +496,7 @@ run() { if [ "${VERSION}" -gt "80" ]; then JDK_89_OPTS="--add-exports=java.base/sun.net.www.protocol.http=ALL-UNNAMED" JDK_89_OPTS="${JDK_89_OPTS} --add-exports=java.base/sun.net.www.protocol.https=ALL-UNNAMED" + JDK_89_OPTS="${JDK_89_OPTS} --add-exports=java.base/sun.net.www.protocol.jar=ALL-UNNAMED" JDK_89_OPTS="${JDK_89_OPTS} --add-exports=java.xml.bind/com.sun.xml.internal.bind.v2.runtime=ALL-UNNAMED" JDK_89_OPTS="${JDK_89_OPTS} --add-exports=jdk.xml.dom/org.w3c.dom.html=ALL-UNNAMED" JDK_89_OPTS="${JDK_89_OPTS} --add-exports=jdk.naming.rmi/com.sun.jndi.url.rmi=ALL-UNNAMED"