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