From 11de90a46ad9cb6d9aea92ae815d54bf881a600c Mon Sep 17 00:00:00 2001 From: Christofer Dutz Date: Tue, 13 Feb 2024 22:05:11 +0100 Subject: [PATCH] fix: Enabled the "with-java" profile when building the plc4j-driver-all --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b82defa75e5..6cea2485f67 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -180,7 +180,7 @@ pipeline { steps { echo 'Building Site' // Generate the driver documentation. - sh './mvnw -Djava.version=1.8 -P${JENKINS_PROFILE},skip-prerequisite-check site -X -pl :plc4j-driver-all' + sh './mvnw -Djava.version=1.8 -P${JENKINS_PROFILE},with-java,skip-prerequisite-check site -X -pl :plc4j-driver-all' // Build the actual website. sh './mvnw -Djava.version=1.8 -P${JENKINS_PROFILE},skip-prerequisite-check site -X -pl .' }