Dodanie 'Jenkinsfile'

This commit is contained in:
Jędrzej Psztur 2021-12-01 14:46:48 +01:00
parent ae925cb08a
commit 092fa594af

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build test code') {
steps {
sh 'mvn clean install -DskipTests'
}
}
}
}