-
Notifications
You must be signed in to change notification settings - Fork 31
/
pipeline_with_nexus
46 lines (44 loc) · 1.48 KB
/
pipeline_with_nexus
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
pipeline {
agent any
tools {
maven "maven 3.6"
}
options {
parallelsAlwaysFailFast()
}
environment {
NEXUS_ARTIFACT_VERSION= "${env.BUILD_NUMBER}"
}
stages {
stage('Non-Parallel Stage') {
steps {
echo 'This stage will be executed first.'
}
}
stage('Parallel Stage') {
parallel {
stage('Checkstyle') {
steps{
// Run the maven build with checkstyle
sh "mvn -e clean package checkstyle:checkstyle"
}
}
stage('Sonarqube') {
steps {
withSonarQubeEnv('SonarQube') {
sh "mvn -e clean package sonar:sonar -Dsonar.host_url=$SONAR_HOST_URL "
}
}
}
}
}
stage('Publish in Nexus') {
steps {
nexusPublisher nexusInstanceId: 'Nexus',
nexusRepositoryId: 'releases',
packages: [[$class: 'MavenPackage',
mavenAssetList: [[classifier: '', extension: '', filePath: 'target/petclinic.war']], mavenCoordinate: [artifactId: 'spring-framework-petclinic', groupId: 'org.springframework.samples', packaging: 'war', version: NEXUS_ARTIFACT_VERSION]]]
}
}
}
}