mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-26 01:15:50 +00:00
removed java from maven commands
This commit is contained in:
parent
f49227133e
commit
3ccfb63ded
1 changed files with 3 additions and 3 deletions
|
@ -9,18 +9,18 @@ pipeline{
|
|||
stages{
|
||||
stage("build"){
|
||||
steps{
|
||||
sh 'java mvn -Dmaven.test.failure.ignore=true compile'
|
||||
sh 'mvn -Dmaven.test.failure.ignore=true compile'
|
||||
}
|
||||
}
|
||||
stage("test"){
|
||||
steps{
|
||||
sh 'java mvn -Dmaven.test.failure.ingore=true test'
|
||||
sh 'mvn -Dmaven.test.failure.ingore=true test'
|
||||
junit 'target/surefire-reports/**/*.xml'
|
||||
}
|
||||
}
|
||||
stage('package'){
|
||||
steps{
|
||||
sh 'java mvn -Dmaven.test.failure.ingore=true package'
|
||||
sh 'mvn -Dmaven.test.failure.ingore=true package'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue