mirror of
https://github.com/JasonHHouse/gaps.git
synced 2026-02-21 20:08:37 -06:00
19 lines
354 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |