mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 23:35:50 +00:00
Merge a904963465
into 516722647a
This commit is contained in:
commit
3167b4a5c0
2 changed files with 34 additions and 0 deletions
25
jenkinsfile
Normal file
25
jenkinsfile
Normal file
|
@ -0,0 +1,25 @@
|
|||
pipeline{
|
||||
agent{ label 'MAVEN'}
|
||||
options{
|
||||
timeout(time: 30, unit: 'MINUTES')
|
||||
}
|
||||
triggers{ pollSCM('* * * * *')
|
||||
}
|
||||
|
||||
stages{
|
||||
stage('git'){
|
||||
steps{
|
||||
git url: 'https://github.com/Jitu123singh/dummy-repository-for-day-build.git',
|
||||
branch: 'dev'
|
||||
|
||||
}
|
||||
stage('Build'){
|
||||
steps{
|
||||
sh 'mvn clean package'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
|
@ -151,6 +151,7 @@ Here is a list of them:
|
|||
| Bean Validation / Hibernate Validator: simplify Maven dependencies and backward compatibility |[HV-790](https://hibernate.atlassian.net/browse/HV-790) and [HV-792](https://hibernate.atlassian.net/browse/HV-792) |
|
||||
| Spring Data: provide more flexibility when working with JPQL queries | [DATAJPA-292](https://jira.springsource.org/browse/DATAJPA-292) |
|
||||
|
||||
|
||||
## Contributing
|
||||
|
||||
The [issue tracker](https://github.com/spring-projects/spring-petclinic/issues) is the preferred channel for bug reports, feature requests and submitting pull requests.
|
||||
|
@ -160,3 +161,11 @@ For pull requests, editor preferences are available in the [editor config](.edit
|
|||
## License
|
||||
|
||||
The Spring PetClinic sample application is released under version 2.0 of the [Apache License](https://www.apache.org/licenses/LICENSE-2.0).
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue