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

Uwe Schindler commented on LUCENE-5950:
---------------------------------------

This condition is also wrong:

{code:xml}
   <condition property="javadoc.args" value="-Xdoclint:none" else="">
     <not>
-      <equals arg1="${build.java.runtime}" arg2="1.7"/>
+      <equals arg1="${build.java.runtime}" arg2="1.8"/>
     </not>
   </condition>
{code}

It can stay as is, but ideally needs to be converted to no longer be 
conditionally. With that above condition, the javadoc's won't build:
If the Java version is Java 8+, we must pass "-Xdoclint:none", so correct is 
and unconditional: 

{code:xml}
<property name="javadoc.args" value="-Xdoclint:none"/>
{code}

> Move to Java 8 in trunk
> -----------------------
>
>                 Key: LUCENE-5950
>                 URL: https://issues.apache.org/jira/browse/LUCENE-5950
>             Project: Lucene - Core
>          Issue Type: Bug
>            Reporter: Ryan Ernst
>         Attachments: LUCENE-5950.patch, LUCENE-5950.patch, LUCENE-5950.patch
>
>
> The dev list thread "[VOTE] Move trunk to Java 8" passed.
> http://markmail.org/thread/zcddxioz2yvsdqkc
> This issue is to actually move trunk to java 8.



--
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