Skip to content

Commit 6bb71ca

Browse files
authored
Uses proper config to avoid failing a build when generating JavaDocs (#1240)
* Uses proper config to avoid failing a build when generating JavaDocs * Removes unneeded source option
1 parent e09572f commit 6bb71ca

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

pom.xml

+9-4
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,15 @@
270270
<artifactId>maven-source-plugin</artifactId>
271271
<version>3.3.1</version>
272272
</plugin>
273+
<plugin>
274+
<groupId>org.apache.maven.plugins</groupId>
275+
<artifactId>maven-javadoc-plugin</artifactId>
276+
<version>3.11.2</version>
277+
<configuration>
278+
<doclint>none</doclint>
279+
<failOnError>false</failOnError>
280+
</configuration>
281+
</plugin>
273282
<plugin>
274283
<groupId>org.apache.rat</groupId>
275284
<artifactId>apache-rat-plugin</artifactId>
@@ -440,10 +449,6 @@
440449
</reports>
441450
</reportSet>
442451
</reportSets>
443-
<configuration>
444-
<doclint>none</doclint>
445-
<failOnError>false</failOnError>
446-
</configuration>
447452
</plugin>
448453
<plugin>
449454
<groupId>org.apache.rat</groupId>

0 commit comments

Comments
 (0)