From 6781360ed6bdca79e1735e02856803b3d6df3b06 Mon Sep 17 00:00:00 2001 From: gajendrachinna Date: Tue, 17 Dec 2024 09:34:37 +0530 Subject: [PATCH 1/4] new --- src/azure-pipeline.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/azure-pipeline.yaml diff --git a/src/azure-pipeline.yaml b/src/azure-pipeline.yaml new file mode 100644 index 000000000..c0e732ca5 --- /dev/null +++ b/src/azure-pipeline.yaml @@ -0,0 +1,18 @@ +--- +pool: default +trigger: + - main +stages: + - stage: build + jobs: + - job: jobbuild + steps: + - task: maven@4 + inputs: + mavemPOMFile: pom.xml + publishJUnitResults: true + testResultFiles: '**/surefire-reports/TEST-*.xml' + jdkVersionOption: '21' + goals: package + + From 9fd82a74b1fe496710d1e32a9f6d473eee3faedd Mon Sep 17 00:00:00 2001 From: chinnagajendra Date: Tue, 17 Dec 2024 16:13:13 +0530 Subject: [PATCH 2/4] Delete src/azure-pipeline.yaml --- src/azure-pipeline.yaml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/azure-pipeline.yaml diff --git a/src/azure-pipeline.yaml b/src/azure-pipeline.yaml deleted file mode 100644 index c0e732ca5..000000000 --- a/src/azure-pipeline.yaml +++ /dev/null @@ -1,18 +0,0 @@ ---- -pool: default -trigger: - - main -stages: - - stage: build - jobs: - - job: jobbuild - steps: - - task: maven@4 - inputs: - mavemPOMFile: pom.xml - publishJUnitResults: true - testResultFiles: '**/surefire-reports/TEST-*.xml' - jdkVersionOption: '21' - goals: package - - From c74a679b65129dc9777bd389ef7466d32815b0ac Mon Sep 17 00:00:00 2001 From: chinnagajendra Date: Tue, 17 Dec 2024 16:15:18 +0530 Subject: [PATCH 3/4] Create azure-pipeline.yaml --- src/azure-pipeline.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/azure-pipeline.yaml diff --git a/src/azure-pipeline.yaml b/src/azure-pipeline.yaml new file mode 100644 index 000000000..13a9b3322 --- /dev/null +++ b/src/azure-pipeline.yaml @@ -0,0 +1,18 @@ +--- +pool: 'default' +trigger: + branches: + include: + - main +stages: + - stage: build + jobs: + - job: jobbuild + steps: + - task: Gardle@3 + inputs: + gradleWrapperFile: 'gradlew' + publishJUnitResults: true + testResultFiles: '**/TEST-*.xml' + jdkVersionOption: '1.17' + goals: 'validate' From 24da69838cc766c280ab73812e677630cd7e13bd Mon Sep 17 00:00:00 2001 From: chinnagajendra Date: Tue, 17 Dec 2024 16:28:02 +0530 Subject: [PATCH 4/4] Delete src/azure-pipeline.yaml --- src/azure-pipeline.yaml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/azure-pipeline.yaml diff --git a/src/azure-pipeline.yaml b/src/azure-pipeline.yaml deleted file mode 100644 index 13a9b3322..000000000 --- a/src/azure-pipeline.yaml +++ /dev/null @@ -1,18 +0,0 @@ ---- -pool: 'default' -trigger: - branches: - include: - - main -stages: - - stage: build - jobs: - - job: jobbuild - steps: - - task: Gardle@3 - inputs: - gradleWrapperFile: 'gradlew' - publishJUnitResults: true - testResultFiles: '**/TEST-*.xml' - jdkVersionOption: '1.17' - goals: 'validate'