Files
gaps/Jenkinsfile
Jason House 496eafc319 testing
2020-07-28 20:12:56 +09:00

19 lines
354 B
Groovy

pipeline {
agent any
stages {
stage('Minify') {
steps {
sh 'npm install'
sh 'npm ci'
sh './minify'
}
}
stage('Build Jars') {
steps {
withSonarQubeEnv('SonarQube') {
sh 'mvn clean install pmd:pmd checkstyle:checkstyle spotbugs:spotbugs sonar:sonar'
}
}
}
}
}