Update Jenkinsfile

This commit is contained in:
boat cow 2023-04-08 20:48:36 -04:00 committed by GitHub
parent 75a36dbc76
commit 0945115b79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -18,8 +18,8 @@ pipeline {
stage('run') {
steps {
sh 'cp -r target/petclinic.jar bin/petclinic.jar'
sh 'java -jar bin/target_jar/petclinic.jar'
sh 'cp -r target/petclinic.jar bin/*.jar'
sh 'java -jar bin/target_jar/*.jar'
// sh 'nohup java -jar target/*.jar > petclinic.log 2>&1 &'
}
}