jira-importer commented on issue #697:
URL: 
https://github.com/apache/maven-javadoc-plugin/issues/697#issuecomment-2957346789

   **[Christian 
Kohlschütter](https://issues.apache.org/jira/secure/[email protected])**
 commented
   
   We are also affected by this.
   
   Our temporary workaround is to
   1. explicitly specify version 2.9.1 in the (parent) POM where possible, and
   2. to add the following to ~/.m2/settings.xml (which does not require 
patching POMs; the javadoc phase just fails without bringing down the entire 
build):
   
   ```
   <settings>
   ```
   
   (...)
   
   ```
   <profiles>
   ```
   
   (...)
   
   ```
     <profile>
       <id>javadoc-fix</id>
       <properties>
         <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
       </properties>
     </profile>
   </profiles>
   <activeProfiles>
     <activeProfile>javadoc-fix</activeProfile>
   </activeProfiles>
   ```
   
   (...)
   
   ```
   </settings>
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to