fixed post being in stages

This commit is contained in:
Jeremi Sz 2023-03-14 15:54:54 +00:00
parent bf4c9ac964
commit 1f64f276f0

View file

@ -15,10 +15,6 @@ pipeline{
stage("test"){ stage("test"){
steps{ steps{
sh 'mvn -Dmaven.test.failure.ingore=true test' sh 'mvn -Dmaven.test.failure.ingore=true test'
}
}
post{
success{
junit 'target/surefire-reports/**/*.xml' junit 'target/surefire-reports/**/*.xml'
} }
} }