You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ju...@apache.org on 2020/11/07 20:54:58 UTC

[jspwiki] branch master updated: forgot to enable jdk-11 compatible doclet when building the aggregate javadocx.. duh

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0b3631b  forgot to enable jdk-11 compatible doclet when building the aggregate javadocx.. duh
0b3631b is described below

commit 0b3631bcc257a3bff4fe9c1a194395516cfec734
Author: juanpablo <ju...@apache.org>
AuthorDate: Sat Nov 7 21:40:04 2020 +0100

    forgot to enable jdk-11 compatible doclet when building the aggregate javadocx.. duh
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index d695e23..66658e3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -46,7 +46,7 @@ try {
                     pom = readMavenPom file: 'pom.xml'
                     writeFile file: 'target/classes/apidocs.txt', text: 'file created in order to allow aggregated javadoc generation, target/classes is needed for all modules'
                     writeFile file: 'jspwiki-it-tests/target/classes/apidocs.txt', text: 'file created in order to allow aggregated javadoc generation, target/classes is needed for all modules'
-                    sh 'mvn package javadoc:aggregate-no-fork -DskipTests -pl !jspwiki-portable'
+                    sh 'mvn package javadoc:aggregate-no-fork -DskipTests -pl !jspwiki-portable -Djdk.javadoc.doclet.version=2.0.12'
                     sh 'java -cp jspwiki-main/target/classes org.apache.wiki.TranslationsCheck site'
                 }
             }