10 lines
147 B
Plaintext
10 lines
147 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('tests') {
|
||
|
steps {
|
||
|
sh 'mvn -B test'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|