From dev-return-88615-archive-asf-public=cust-asf.ponee.io@sling.apache.org Tue May 15 16:55:09 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id E7D4918076D for ; Tue, 15 May 2018 16:55:08 +0200 (CEST) Received: (qmail 60130 invoked by uid 500); 15 May 2018 14:55:07 -0000 Mailing-List: contact dev-help@sling.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@sling.apache.org Delivered-To: mailing list dev@sling.apache.org Received: (qmail 60119 invoked by uid 99); 15 May 2018 14:55:07 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 May 2018 14:55:07 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 3A09DC00A9 for ; Tue, 15 May 2018 14:55:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -109.511 X-Spam-Level: X-Spam-Status: No, score=-109.511 tagged_above=-999 required=6.31 tests=[ENV_AND_HDR_SPF_MATCH=-0.5, KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01, USER_IN_DEF_SPF_WL=-7.5, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id 9Gapc1zisFJO for ; Tue, 15 May 2018 14:55:05 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 895C65F58A for ; Tue, 15 May 2018 14:55:05 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id CBCD2E0E87 for ; Tue, 15 May 2018 14:55:04 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 83291217A1 for ; Tue, 15 May 2018 14:55:04 +0000 (UTC) Date: Tue, 15 May 2018 14:55:04 +0000 (UTC) From: "Konrad Windszus (JIRA)" To: dev@sling.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (SLING-7312) Java 9 requires javax.annotation to be added to the classpath MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/SLING-7312?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16457540#comment-16457540 ] Konrad Windszus edited comment on SLING-7312 at 5/15/18 2:54 PM: ----------------------------------------------------------------- There are some hints about this in https://blog.codefx.org/java/jsr-305-java-9/. Google is considering moving from JSR-305 to Spotbugs annotations for that reason (https://github.com/google/guava/issues/2960). Oak/Jackrabbit wants to move away as well (JCR-4301). was (Author: kwin): There are some hints about this in https://blog.codefx.org/java/jsr-305-java-9/. Google is considering moving from JSR-305 to Spotbugs annotations for that reason (https://github.com/google/guava/issues/2960). > Java 9 requires javax.annotation to be added to the classpath > ------------------------------------------------------------- > > Key: SLING-7312 > URL: https://issues.apache.org/jira/browse/SLING-7312 > Project: Sling > Issue Type: Bug > Components: Launchpad > Reporter: Robert Munteanu > Priority: Major > Fix For: Starter 11 > > > When running on Java 9 post SLING-7186 startup fails due to the {{javax.annotation}} package no longer being exported by default, e.g. > {noformat}org.osgi.framework.BundleException: Unable to resolve org.apache.sling.installer.core [2](R 2.0): missing requirement [org.apache.sling.installer.core [2](R 2.0)] osgi.wiring.package; (osgi.wiring.package=javax.annotation) Unresolved requirements: [[org.apache.sling.installer.core [2](R 2.0)] osgi.wiring.package; (osgi.wiring.package=javax.annotation)] > at org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4149) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2119) > at org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1373) > at org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.base/java.lang.Thread.run(Thread.java:844){noformat} > The interesting part here is that the {{javax.annotation}} classes that are required - for instance {{javax.annotation.CheckForNull}} are _not_ part of the JDK-provided {{javax.annotation}} package, they must come from another jar. In fact, we don't have that Jar deployed in the starter, but instead the JDK provides: > {noformat} > Generated.class > PostConstruct.class > PreDestroy.class > Resource.class > Resources.class > {noformat} > In a sense, this is very close to the root cause of SLING-7135 - solving one might solve both but the symptoms are very different so raising it separately. -- This message was sent by Atlassian JIRA (v7.6.3#76005)