diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 000000000..3f53c5706 --- /dev/null +++ b/jenkinsfile @@ -0,0 +1,20 @@ +node { + + stage('SCM') { + // git clone + git 'https://github.com/openmrs/openmrs-core.git' + } + + stage ('build the packages') { + // mvn package + sh 'mvn package' + } + + + + //stage ('archival') { + // archiving artifacts + //archive 'target/*.jar' + //} + +}