@@ -2,9 +2,16 @@ pipeline {
agent any
stages {
+ stage('pullCode'){
+ steps{
+ echo 'This is a pullCode step'
+ checkout scm
+ }
stage('Build') {
steps {
echo 'Building..'
+ sh 'mvn clean package -Dmaven.test.skip=true'
}
stage('Test') {