From 14c280d03d1d44639ac5898228a2d4fe912a3be7 Mon Sep 17 00:00:00 2001 From: chinnagajendra Date: Wed, 18 Dec 2024 17:02:11 +0530 Subject: [PATCH] Create azure-pipeline.yaml --- 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 00000000000..607914c27f6 --- /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: package + +