Skip to content

Commit

Permalink
Skips warning about missing javadoc (#1188)
Browse files Browse the repository at this point in the history
  • Loading branch information
damianszczepanik authored Jun 19, 2024
1 parent fa3549e commit cee8381
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<!-- 'oss-parent' should not be used, it was deprecated years ago -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
<relativePath />
<relativePath/>
</parent>

<groupId>net.masterthought</groupId>
Expand Down Expand Up @@ -161,6 +162,8 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<!-- do not warn about missing javadoc -->
<doclint>-missing</doclint>
<!-- Legacy Mode means don't attempt modular -->
<legacyMode>true</legacyMode>
<source>11</source>
Expand Down

0 comments on commit cee8381

Please sign in to comment.