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 + +