create initial JF

This commit is contained in:
beatriz munoz 2020-12-22 09:35:33 +01:00
parent 8065ad00e2
commit 669abb0d97

6
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,6 @@
node('with-basic-tools-bea') {
stage("Build and test") {
checkout scm
sh "mvn clean install"
}
}