Skip to content

Commit

Permalink
fix(ci): run javadoc stage with JDK 17 (camunda#3539)
Browse files Browse the repository at this point in the history
+ exclude 'engine-rest-openapi'

Related to camunda#3441
  • Loading branch information
yanavasileva authored Jul 3, 2023
1 parent 807e223 commit 4f3911f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .ci/daily/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,10 @@ pipeline {
agentLabel : 'centos-stable',
runSteps : {
cambpmRunMaven('.',
"package javadoc:javadoc javadoc:aggregate -Pdistro,distro-wildfly,distro-webjar,javadocs -pl '!distro/wildfly/modules,!distro/wildfly26/modules' -DskipTests=true -Dskip.frontend.build=true",
"package javadoc:javadoc javadoc:aggregate -Pdistro,distro-wildfly,distro-webjar,javadocs -pl " +
"'!distro/wildfly/modules,!distro/wildfly26/modules,!engine-rest/engine-rest-openapi' -DskipTests=true -Dskip.frontend.build=true",
withNpm: true,
jdkVersion: 'jdk-11-latest')
jdkVersion: 'jdk-17-latest')
},
postSuccess: {
def projectVersion = env.JOB_NAME.split('/')[0] + "-SNAPSHOT"
Expand Down

0 comments on commit 4f3911f

Please sign in to comment.