-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathJenkinsfile
48 lines (42 loc) · 1.07 KB
/
Jenkinsfile
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
47
48
pipeline {
agent {
label 'common'
}
tools {
jdk 'JDK_1_8'
}
options {
skipStagesAfterUnstable()
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '28'))
timeout(time: 1, unit: 'HOURS')
}
triggers {
// at least once a day
cron('H H(0-7) * * *')
// every sixty minutes
pollSCM('H/5 * * * *')
}
stages {
stage("SCM Checkout") {
steps {
deleteDir()
checkout scm
}
}
stage("Maven") {
steps {
script {
mavenbuild mavenArgs: "dependency:copy-dependencies"
}
}
}
stage("Nexus Lifecycle") {
steps {
nexusPolicyEvaluation iqApplication: 'com.baloise.testing.framework.taf',
iqScanPatterns: [[scanPattern: '**/target/dependency/*.jar']],
iqStage: 'build'
}
}
}
}