This commit is contained in:
Jitu123singh 2024-03-21 09:50:58 +00:00 committed by GitHub
commit 3167b4a5c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 34 additions and 0 deletions

25
jenkinsfile Normal file
View 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'
}
}
}
}
}

View file

@ -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).