You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Rene Gielen (JIRA)" <ji...@apache.org> on 2014/09/12 09:15:34 UTC

[jira] [Updated] (WW-4403) JDK 8: build fails due to JavaDoc checking issues

     [ https://issues.apache.org/jira/browse/WW-4403?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rene Gielen updated WW-4403:
----------------------------
    Description: 
JDK 8 introduced stricter checking for JavaDoc processing, causing issues formerly producing warning messages to break the build.

Basically the fix is as easy as adding the following configuration to the pluginManagement section:
{code:xml}
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-javadoc-plugin</artifactId>
    <version>2.9.1</version>
    <configuration>
        <show>private</show>
        <additionalparam>-Xdoclint:none</additionalparam>
    </configuration>
</plugin>
{code}
To fix and close this issue, we need a testable build though which is currently blocked by WW-4402

  was:
JDK 8 introduced stricter checking for JavaDoc processing, causing issues formerly producing warning messages to break the build.

Basically the fix is as easy as adding the following configuration to the pluginManagement section:
{code:xml}
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-javadoc-plugin</artifactId>
    <version>2.9.1</version>
    <configuration>
        <show>private</show>
        <additionalparam>-Xdoclint:none</additionalparam>
    </configuration>
</plugin>
{code}
To fix and close this issue, we need a testable build though which is curretnly blocked by WW-4402


> JDK 8: build fails due to JavaDoc checking issues
> -------------------------------------------------
>
>                 Key: WW-4403
>                 URL: https://issues.apache.org/jira/browse/WW-4403
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Build Management
>    Affects Versions: 2.3.16.3
>            Reporter: Rene Gielen
>              Labels: jdk8
>             Fix For: 2.5
>
>
> JDK 8 introduced stricter checking for JavaDoc processing, causing issues formerly producing warning messages to break the build.
> Basically the fix is as easy as adding the following configuration to the pluginManagement section:
> {code:xml}
> <plugin>
>     <groupId>org.apache.maven.plugins</groupId>
>     <artifactId>maven-javadoc-plugin</artifactId>
>     <version>2.9.1</version>
>     <configuration>
>         <show>private</show>
>         <additionalparam>-Xdoclint:none</additionalparam>
>     </configuration>
> </plugin>
> {code}
> To fix and close this issue, we need a testable build though which is currently blocked by WW-4402



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