[ 
https://issues.apache.org/jira/browse/LUCENE-6070?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14222554#comment-14222554
 ] 

ASF subversion and git services commented on LUCENE-6070:
---------------------------------------------------------

Commit 1641303 from [~thetaphi] in branch 'dev/branches/branch_5x'
[ https://svn.apache.org/r1641303 ]

Merged revision(s) 1641302 from lucene/dev/trunk:
LUCENE-6070: Fix forbidden-apis and deprecations of Java 8 when used with Java 9

> forbidden-apis fails on Java 9 while parsing deprecated signatures
> ------------------------------------------------------------------
>
>                 Key: LUCENE-6070
>                 URL: https://issues.apache.org/jira/browse/LUCENE-6070
>             Project: Lucene - Core
>          Issue Type: Bug
>          Components: general/build
>    Affects Versions: Trunk
>            Reporter: Uwe Schindler
>            Assignee: Uwe Schindler
>             Fix For: Trunk
>
>         Attachments: LUCENE-6070.patch
>
>
> {noformat}
> -check-forbidden-all:
> [forbidden-apis] Reading bundled API signatures: jdk-unsafe-1.8
> [forbidden-apis] Reading bundled API signatures: jdk-deprecated-1.8
> BUILD FAILED
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:515: The 
> following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:86: The 
> following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/build.xml:101: The 
> following error occurred while executing this line:
> /mnt/ssd/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-build.xml:2293:
>  Parsing signatures failed: No method found with following signature: 
> java.util.jar.Pack200$Packer#addPropertyChangeListener(java.beans.PropertyChangeListener)
> {noformat}
> This is a really new thing:
> The method 
> {{java.util.jar.Pack200$Packer#addPropertyChangeListener(java.beans.PropertyChangeListener)}}
>  part of the JDK 8 deprecation list. But this method was actually removed in 
> Java 9 completely (the first deprecation ever that was actually removed!). 
> This method was deprecated in Java 8 for the first time, with the following 
> text:
> "Deprecated.  The dependency on PropertyChangeListener creates a significant 
> impediment to future modularization of the Java platform. This method will be 
> removed in a future release. Applications that need to monitor progress of 
> the packer can poll the value of the PROGRESS property instead."
> So I am not sure how to handle that, it seems that in JDK9, Oracle may need 
> to remove more deprecated stuff to make modularization possible. In branch_5x 
> builds this is not a problem, because it was not deprecated in Java 8, so the 
> java 7 signatures file does not have that method listed. A workaround would 
> be to enable the forbidden feature to not fail on missing signatures.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to