From: David Roden Date: Sun, 11 May 2025 08:52:51 +0000 (+0200) Subject: 💚 Fix some path specifications X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=af3c1b23c14e5259f2dce0c6f1424f170a30bf12;p=msta.git 💚 Fix some path specifications --- diff --git a/Jenkinsfile b/Jenkinsfile index f57bcd7..e84b7dd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,7 +27,7 @@ pipeline { } post { always { - junit 'target/surefire-reports/*.xml' + junit '**/target/surefire-reports/*.xml' recordCoverage(tools: [[parser: 'JACOCO', pattern: '**/jacoco.xml']]) } } @@ -39,8 +39,8 @@ pipeline { steps { configFileProvider([configFile(fileId: 'fb50fa11-48a8-44b8-84fd-e11f06ab1067', targetLocation: 'toolchains.xml')]) { sh './mvnw -t toolchains.xml -DskipTests=true package' - archiveArtifacts artifacts: 'target/*.jar', fingerprint: true - javadoc javadocDir: 'target/apidocs', keepAll: true + archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true + javadoc javadocDir: '**/target/apidocs', keepAll: true } } }