You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2021/07/27 07:14:38 UTC

[wicket] branch master updated: WICKET-6909 Link to Javadoc for 9.x is broken on the website

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
     new f5d1354  WICKET-6909 Link to Javadoc for 9.x is broken on the website
f5d1354 is described below

commit f5d135488055310054bcedd652d917c168e8f71a
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Tue Jul 27 10:11:48 2021 +0300

    WICKET-6909 Link to Javadoc for 9.x is broken on the website
    
    Pretend it is pre-JPMS for generating the javadoc.
    The issue with the Java modules is that 'mvn javadoc:aggregate' tries to create the Javadoc for the parent/pom Maven modules and it complains that there are no Java modules for their children Maven modules...
    
    (cherry picked from commit 42dd2b96d6ed82aad58670d2844b4bcf79a85ab4)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index d940dab..9d57f2d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1063,7 +1063,7 @@
 						<failOnError>false</failOnError>
 						<doclint>none</doclint>
 						<additionalJOption>${javadoc.additionalJOption}</additionalJOption>
-						<source>${java.specification.version}</source>
+						<source>8</source>
 					</configuration>
 					<executions>
 						<execution>