import java.nio.file.Path import java.nio.file.Files pipeline { agent any stages { stage("Build") { steps { sh "./gradlew build" } } stage("Publish") { steps { sh "./gradlew publish" } } } post { success { cleanWs deleteDirs: true } } }