mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 14:05:50 +00:00
Merge pull request #5 from cloudogu/feature/4_update_jenkinsfile
Updates jenkinsfile
This commit is contained in:
commit
a99b5f3e16
1 changed files with 11 additions and 13 deletions
24
Jenkinsfile
vendored
24
Jenkinsfile
vendored
|
@ -28,18 +28,16 @@ node {
|
|||
}
|
||||
|
||||
String jacoco = "org.jacoco:jacoco-maven-plugin:0.8.1"
|
||||
parallel(
|
||||
test: {
|
||||
stage('Test') {
|
||||
mvn "${jacoco}:prepare-agent test ${jacoco}:report"
|
||||
}
|
||||
},
|
||||
integrationTest: {
|
||||
stage('Integration Test') {
|
||||
mvn "${jacoco}:prepare-agent-integration failsafe:integration-test failsafe:verify ${jacoco}:report-integration"
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
stage('Test') {
|
||||
mvn "${jacoco}:prepare-agent test ${jacoco}:report"
|
||||
}
|
||||
|
||||
|
||||
stage('Integration Test') {
|
||||
mvn "${jacoco}:prepare-agent-integration failsafe:integration-test failsafe:verify ${jacoco}:report-integration"
|
||||
}
|
||||
|
||||
|
||||
stage('Static Code Analysis') {
|
||||
|
||||
|
@ -49,7 +47,7 @@ node {
|
|||
}
|
||||
|
||||
stage('Deploy') {
|
||||
mvn.useDeploymentRepository([id: cesFqdn, url: "${cesUrl}/nexus", credentialsId: credentialsId, type: 'Nexus3'])
|
||||
mvn.useDeploymentRepository([id: cesFqdn, url: "${cesUrl}/nexus", credentialsId: credentialsId, type: 'Nexus3'])
|
||||
|
||||
mvn.deployToNexusRepository('-Dmaven.javadoc.failOnError=false')
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue