You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
320 B

pipeline{
agent any
tools{
maven 'Maven 3.8.6'
jdk 'jdk18'
}
stages{
stage('Build'){
sh 'mvn -Dmaven.test.failure.ignore=true build'
}
post{
success{
junit 'target/surefire-reports/**/*.xml'
}
}
}
}