mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 08:15:49 +00:00
removing http links
This commit is contained in:
parent
14f36488f1
commit
1e51242ce3
2 changed files with 3 additions and 11 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -26,7 +26,7 @@ node {
|
||||||
sh """ #!/bin/bash
|
sh """ #!/bin/bash
|
||||||
mvn test surefire-report:report
|
mvn test surefire-report:report
|
||||||
|
|
||||||
echo 'surefire report generated in /target/site/surefire-report.html'
|
echo 'surefire report generated in http://localhost:8080/job/${projectName}/${env.BUILD_ID}/execution/node/3/ws/target/site/surefire-report.html'
|
||||||
"""
|
"""
|
||||||
} // timeout
|
} // timeout
|
||||||
} // stage: unittest
|
} // stage: unittest
|
||||||
|
@ -34,9 +34,7 @@ node {
|
||||||
stage ("checkStyle") {
|
stage ("checkStyle") {
|
||||||
timeout(time: 2, unit: 'MINUTES') {
|
timeout(time: 2, unit: 'MINUTES') {
|
||||||
sh """ #!/bin/bash
|
sh """ #!/bin/bash
|
||||||
mvn checkstyle:checkstyle
|
mvn validate
|
||||||
|
|
||||||
echo 'checkstyle report generated in /target/site/checkstyle.html'
|
|
||||||
"""
|
"""
|
||||||
} // timeout
|
} // timeout
|
||||||
} // stage: validate
|
} // stage: validate
|
||||||
|
@ -46,7 +44,7 @@ node {
|
||||||
sh """ #!/bin/bash
|
sh """ #!/bin/bash
|
||||||
mvn jacoco:report
|
mvn jacoco:report
|
||||||
|
|
||||||
echo 'Jacoco report generated in /target/site/jacoco/index.html'
|
echo 'Jacoco report generated in http://localhost:8080/job/${projectName}/${env.BUILD_ID}/execution/node/3/ws/target/site/jacoco/index.html'
|
||||||
"""
|
"""
|
||||||
} // timeout
|
} // timeout
|
||||||
} // stage: Jacoo
|
} // stage: Jacoo
|
||||||
|
|
|
@ -135,9 +135,3 @@ sudo setfacl -R -m user:jenkins:rwx /var/run/docker.sock
|
||||||
|
|
||||||
## License
|
## License
|
||||||
The Spring PetClinic sample application is released under version 2.0 of the [Apache License](https://www.apache.org/licenses/LICENSE-2.0).
|
The Spring PetClinic sample application is released under version 2.0 of the [Apache License](https://www.apache.org/licenses/LICENSE-2.0).
|
||||||
|
|
||||||
|
|
||||||
## References
|
|
||||||
- [Dockerfile reference](https://docs.docker.com/reference/dockerfile/)
|
|
||||||
- [Docker CLI reference](https://docs.docker.com/reference/cli/docker/)
|
|
||||||
- [Jenkins Docs](https://www.jenkins.io/doc/)
|
|
Loading…
Reference in a new issue