Dodanie 'Jenkinsfile'

This commit is contained in:
Jędrzej Psztur 2021-12-03 17:52:08 +01:00
parent a2b6d067eb
commit b563e9d74c
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

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