DATACMNS-1462 - Introduce Concourse.

This commit is contained in:
Greg Turnquist
2018-10-08 14:49:47 -05:00
parent 16a04d4dbb
commit 77bdf0aebe
10 changed files with 634 additions and 0 deletions

14
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,14 @@
pipeline {
agent {
docker {
image 'maven:3.3.3'
}
}
stages {
stage('build') {
steps {
sh 'mvn clean dependency:list test -Dsort -U'
}
}
}
}