From ef8a2daa9db97a29f3a34c207b17e71eec07696c Mon Sep 17 00:00:00 2001 From: Jitu123singh <148254950+Jitu123singh@users.noreply.github.com> Date: Sun, 17 Mar 2024 07:25:19 +0530 Subject: [PATCH 1/5] Update readme.md --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 79b0fb692..d723cdd77 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. From 82e6259b8fc167ac3359367ee577ae8f8f80ee9b Mon Sep 17 00:00:00 2001 From: Jitu123singh <148254950+Jitu123singh@users.noreply.github.com> Date: Sun, 17 Mar 2024 07:27:28 +0530 Subject: [PATCH 2/5] Update readme.md --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index d723cdd77..918a17be1 100644 --- a/readme.md +++ b/readme.md @@ -161,3 +161,5 @@ 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). + + From 8860b71fcc289fbc204699a8b1241669e6c2a9df Mon Sep 17 00:00:00 2001 From: Jitu123singh <148254950+Jitu123singh@users.noreply.github.com> Date: Sun, 17 Mar 2024 08:46:43 +0530 Subject: [PATCH 3/5] Update readme.md --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index 918a17be1..545460f82 100644 --- a/readme.md +++ b/readme.md @@ -163,3 +163,5 @@ For pull requests, editor preferences are available in the [editor config](.edit The Spring PetClinic sample application is released under version 2.0 of the [Apache License](https://www.apache.org/licenses/LICENSE-2.0). + + From 12069d49aa1e4672d1fd9337df1646d6e6b22b17 Mon Sep 17 00:00:00 2001 From: Jitu123singh <148254950+Jitu123singh@users.noreply.github.com> Date: Wed, 20 Mar 2024 16:17:18 +0530 Subject: [PATCH 4/5] Update readme.md --- readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/readme.md b/readme.md index 545460f82..b03e30547 100644 --- a/readme.md +++ b/readme.md @@ -165,3 +165,7 @@ The Spring PetClinic sample application is released under version 2.0 of the [Ap + + + + From a90496346505526707d7d2f59aab59a02dd3cf98 Mon Sep 17 00:00:00 2001 From: jitendra Date: Thu, 21 Mar 2024 12:35:18 +0530 Subject: [PATCH 5/5] added first changes in jenkinsfile --- jenkinsfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 jenkinsfile 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