Skip to content

Commit

Permalink
Jenkinsfile: also deploy missing plugin parent pom and adapt to new a…
Browse files Browse the repository at this point in the history
…rtifacts path
  • Loading branch information
Dominick Leppich committed Mar 21, 2024
1 parent 5fe882c commit c8b52f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ pipeline {
steps {
script {
if (fileExists('module-lib/pom.xml')) {
sh 'mvn -N deploy'
sh 'mvn -f module-lib/pom.xml deploy'
}
}
Expand All @@ -77,7 +78,7 @@ pipeline {
dependencyCheckPublisher pattern: 'target/dependency-check-report.xml'
}
success {
archiveArtifacts artifacts: '**/target/*.jar, */plugin_*.xml, plugin_*.xml', fingerprint: true, onlyIfSuccessful: true
archiveArtifacts artifacts: '**/target/*.jar, install/*', fingerprint: true, onlyIfSuccessful: true
}
changed {
emailext(
Expand Down

0 comments on commit c8b52f7

Please sign in to comment.