forked from sustech-cs304/Teedy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
55 lines (55 loc) · 1.33 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
49
50
51
52
53
54
55
pipeline{
agent any
tools {
maven 'MAVEN_HOME'
}
stages {
stage('Build'){
steps{
sh 'mvn -B -DskipTests clean package'
}
}
stage('pmd'){
steps{
sh 'mvn pmd:pmd'
}
}
stage('test') {
steps {
sh 'mvn test'
}
post {
always {
junit '**/target/surefire-reports/*.xml'
}
}
}
stage('Generate Surefire Report') {
steps {
sh 'mvn surefire-report:report'
}
post {
always {
archiveArtifacts artifacts: '**/target/site/surefire-report.html', fingerprint: true
}
}
}
stage('Generate Javadoc') {
steps {
sh 'mvn javadoc:jar'
}
post {
always {
archiveArtifacts artifacts: '**/target/site/apidocs/*', fingerprint: true
}
}
}
}
post{
always{
archiveArtifacts artifacts: '**/target/site/**', fingerprint: true
archiveArtifacts artifacts: '**/target/**/*.jar', fingerprint: true
archiveArtifacts artifacts: '**/target/**/*.war', fingerprint: true
}
}
}