pipeline { agent any stages { stage('Build backend') { steps { bat 'cd backend && mvnw.cmd -DskipTests=true package' } } } }