Ticket #1036 (closed Defect: fixed)

Opened 8 years ago

Last modified 8 years ago

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:1 Changed 8 years ago by jri

  • Status changed from new to accepted

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:3 Changed 8 years ago by jri

  • Status changed from accepted to closed
  • Resolution set to fixed

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>

comment:6 Changed 8 years ago by Malte

It works, thanks for the tip.

Note: See TracTickets for help on using tickets.