Skip to content

Commit

Permalink
Disable doclint-based Javadoc errors with Java 8.
Browse files Browse the repository at this point in the history
  • Loading branch information
SigmaX committed Aug 23, 2019
1 parent 60c6514 commit b50aa9e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 90 deletions.
31 changes: 16 additions & 15 deletions ecj/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,21 +193,22 @@
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<show>private</show>
<overview>file:///${project.basedir}/docs</overview>
</configuration>
<executions>
<execution>
<goals>
<goal>javadoc</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<show>private</show>
<overview>file:///${project.basedir}/docs</overview>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
<executions>
<execution>
<goals>
<goal>javadoc</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
Expand Down
75 changes: 0 additions & 75 deletions ecj/src/main/java/ec/co/ant/AntBreeder.java

This file was deleted.

0 comments on commit b50aa9e

Please sign in to comment.