Skip to content

Commit

Permalink
javadoc plugin migrated to 3.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
  • Loading branch information
senivam committed Apr 26, 2021
1 parent 0d78c0c commit 3335d3a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
21 changes: 21 additions & 0 deletions bundles/apidocs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,27 @@
</dependency>
</dependencies>
<profiles>
<profile>
<id>JettyExclude</id>
<activation>
<jdk>1.8</jdk>
</activation>
<properties>
<jetty.version>9.4.28.v20200408</jetty.version>
</properties>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${jetty.version}</version>
</dependency>
</dependencies>
</profile>
<profile>
<id>jetty2x</id>
<activation>
Expand Down
1 change: 1 addition & 0 deletions ext/cdi/jersey-cdi-rs-inject/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<show>package</show>
<detectJavaApiLink>false</detectJavaApiLink>
</configuration>
</plugin>
</plugins>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<version>3.2.0</version>
<configuration>
<doctitle>Jersey ${jersey.version} API Documentation</doctitle>
<windowtitle>Jersey ${jersey.version} API</windowtitle>
Expand All @@ -473,7 +473,7 @@
<fileExclude>module-info.java</fileExclude>
</sourceFileExcludes>
<verbose>true</verbose>
<additionalparam>-Xdoclint:none</additionalparam>
<doclint>none</doclint>
<maxmemory>256m</maxmemory>
</configuration>
<executions>
Expand Down Expand Up @@ -1392,14 +1392,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<version>3.2.0</version>
<!-- Run this plugin report sets only in the main Jersey pom -->
<inherited>false</inherited>
<configuration>
<doctitle>Jersey ${jersey.version} API Documentation</doctitle>
<windowtitle>Jersey ${jersey.version} API</windowtitle>
<bottom>
<![CDATA[Copyright &#169; 2007-2017,
<![CDATA[Copyright &#169; 2007-2021,
<a href="http://www.oracle.com">Oracle</a>
and/or its affiliates.
All Rights Reserved. Use is subject to license terms.]]>
Expand All @@ -1411,7 +1411,7 @@
<link>https://jax-rs.github.io/apidocs/2.1</link>
<link>https://javaee.github.io/hk2/apidocs/</link>
</links>
<additionalparam>-Xdoclint:none</additionalparam>
<doclint>none</doclint>
<sourceFileExcludes>
<fileExclude>module-info.java</fileExclude>
</sourceFileExcludes>
Expand Down

0 comments on commit 3335d3a

Please sign in to comment.