blob: 70f6f591db2f7e927623f229f97b07a645ba82cf [file] [log] [blame]
pipeline {
agent any
stages {
stage('Validate') {
steps {
echo '-----------------------Fetching Code-----------------------'
git 'https://github.com/ravi2krishna/JavaWebCalculator.git'
sh 'mvn compile'
}
}
stage('Test') {
steps {
echo '-----------------------Testing Code-----------------------'
sh 'mvn test'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}