From 1f21187fcbc952b255d02c1abc6f7c390fcbb5c8 Mon Sep 17 00:00:00 2001 From: gajendrachinna Date: Thu, 19 Dec 2024 09:33:47 +0530 Subject: [PATCH] 01 --- azure-pipeline.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 azure-pipeline.yaml diff --git a/azure-pipeline.yaml b/azure-pipeline.yaml new file mode 100644 index 000000000..e44551206 --- /dev/null +++ b/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: '1.17' + goals: validate + +