File: Jenkinsfile

package info (click to toggle)
libquartz2-java 2.3.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,728 kB
  • sloc: java: 46,480; sql: 3,484; xml: 3,312; sh: 352; makefile: 9
file content (19 lines) | stat: -rw-r--r-- 431 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pipeline {
	agent any
	tools { 
        maven 'maven-3.6.0' 
        jdk 'jdk7'
    }
    stages {
        stage('Build - Windows Only') {
            steps {
                bat 'mvn -V -Dhttps.protocols=TLSv1.2 -Dmaven.test.failure.ignore clean package'
            }
            post {
                success {
                    junit '**/target/surefire-reports/TEST-*.xml'
                }
            }
        }
    }
}