mirror of
https://github.com/zontreck/AutoMoneyPlugin
synced 2025-06-18 18:03:55 +00:00
29 lines
No EOL
591 B
Groovy
29 lines
No EOL
591 B
Groovy
pipeline {
|
|
agent any
|
|
options {
|
|
buildDiscarder(logRotator(numToKeepStr: '5'))
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
agent {
|
|
label 'linux'
|
|
}
|
|
steps {
|
|
echo 'Building..'
|
|
script {
|
|
sh '''
|
|
#!/bin/bash
|
|
|
|
mvn clean package
|
|
'''
|
|
}
|
|
}
|
|
|
|
post {
|
|
always {
|
|
archiveArtifacts artifacts: 'target/*.jar'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |