Ticket #1036 (closed Defect: fixed)
javadoc execution fails with Java 8
Reported by: | jri | Owned by: | jri |
---|---|---|---|
Priority: | Major | Milestone: | Release 4.8.4 |
Component: | DeepaMehta Standard Distribution | Version: | 4.8.3 |
Keywords: | Cc: | dgf, Malte, JuergeN | |
Complexity: | 2 | Area: | |
Module: |
Description
Change History
comment:2 Changed 8 years ago by jri
In https://github.com/jri/deepamehta/commit/c182fa0:
POM: try to fix javadoc execution on Java 8
comment:4 follow-up: ↓ 5 Changed 8 years ago by Malte
This "failOnError=false" fix property does not seem to help third party plugins (yet).
Can we have this control per 3rd-party plugin? Thanks for your help.
comment:5 in reply to: ↑ 4 Changed 8 years ago by jri
Replying to Malte:
Can we have this control per 3rd-party plugin?
Yes, try putting this build configuration in your plugin pom:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <failOnError>false</failOnError> </configuration> </plugin>
Note: See
TracTickets for help on using
tickets.