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