pipeline { agent any stages { stage('Build') { steps { echo 'Building..' archiveArtifacts artifacts: '/target/school_app_api', fingerprint: true } } stage('Test') { steps { echo 'Testing..' } } stage('Deploy') { steps { echo 'Deploying....' } } } }