Skip to content

Commit

Permalink
reduce number of duplicates in the reports
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Aug 29, 2021
1 parent 558bf4e commit ced4126
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions bundles/eclipselink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,15 @@
<execution>
<id>default-compile</id>
<configuration>
<compilerArgs>
<!-- reduce number of duplicates -->
<showDeprecation>false</showDeprecation>
<compilerArgs combine.children="override">
<arg>-Xlint:module,requires-transitive-automatic,requires-automatic,opens,exports</arg>
<arg>-Xdoclint:none</arg>
<arg>-Xmaxwarns</arg>
<arg>${warn.limit}</arg>
<arg>-Xmaxerrs</arg>
<arg>${warn.limit}</arg>
<arg>--add-reads</arg>
<arg>eclipselink=ALL-UNNAMED</arg>
</compilerArgs>
Expand Down Expand Up @@ -550,12 +558,13 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!-- reduce number of duplicates, all issues were already reported earlier -->
<doclint>none</doclint>
<additionalOptions>
--add-reads eclipselink=ALL-UNNAMED
</additionalOptions>
<detectOfflineLinks>false</detectOfflineLinks>
<use>false</use>
<quiet>true</quiet>
<includeDependencySources>false</includeDependencySources>
<doctitle><![CDATA[${javadoc.prefixTitle}, ${javadoc.postfixTitle}]]></doctitle>
<header><![CDATA[${javadoc.prefixTitle}, ${javadoc.postfixTitle}]]></header>
Expand Down

0 comments on commit ced4126

Please sign in to comment.