Skip to content

Commit

Permalink
Avoid javadoc warnings and do not generate javadoc for demos
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Dec 10, 2020
1 parent be78b98 commit 6168d2b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
9 changes: 9 additions & 0 deletions demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,15 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
9 changes: 9 additions & 0 deletions graal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,15 @@
</buildArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,6 @@
<id>java9</id>
<properties>
<surefire.argLine>--add-opens java.base/java.io=ALL-UNNAMED</surefire.argLine>
<javadocOptions>-html4</javadocOptions>
</properties>
<activation>
<jdk>[9,)</jdk>
Expand Down

0 comments on commit 6168d2b

Please sign in to comment.