11 lines
176 B
Plaintext
11 lines
176 B
Plaintext
|
|
||
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('Build test code') {
|
||
|
steps {
|
||
|
sh 'mvn clean install -DskipTests'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|