pipeline { agent any stages { stage('Build') { steps { withGradle() { sh './gradlew clean build' } } } } }