pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
sh 'gradle build'
}
stage('Test') {
echo 'Testing...'
sh 'gradle test'