removing incorrect /

This commit is contained in:
Benjamin Stein 2017-05-10 15:04:32 -07:00
parent 84c7f0cea3
commit eb9199e891

4
Jenkinsfile vendored
View file

@ -11,14 +11,12 @@ pipeline {
configFileProvider(
[configFile(fileId: 'nexus', variable: 'MAVEN_SETTINGS')]) {
sh 'mvn -s $MAVEN_SETTINGS clean deploy -DskipTests=true'
sh 'ls'
}
}
}
stage ('Deploy to Tomcat') {
steps {
sh 'ls target'
sh 'cp /target/petclinic.war /usr/share/jenkins/ref/petclinic/petclinic.war'
sh 'cp target/petclinic.war /usr/share/jenkins/ref/petclinic/petclinic.war'
}
}
stage ('Sonar') {