diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 000000000..7529570a6 --- /dev/null +++ b/jenkinsfile @@ -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' + } + + } + + } + } +} \ No newline at end of file diff --git a/readme.md b/readme.md index 79b0fb692..b03e30547 100644 --- a/readme.md +++ b/readme.md @@ -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). + + + + + + + +