Skip to content

Commit

Permalink
specify source level for javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
aubi committed Jun 30, 2022
1 parent 8ef6dae commit d5b74db
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,24 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-api-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<source>11</source>
<quiet>true</quiet>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit d5b74db

Please sign in to comment.