diff --git a/azure-pipeline.yaml b/azure-pipeline.yaml new file mode 100644 index 000000000..734d13f0a --- /dev/null +++ b/azure-pipeline.yaml @@ -0,0 +1,18 @@ +--- +pool: 'ubuntu-24.04' +trigger: + branches: + include: + - main +stages: + - stage: build + jobs: + - job: jobbuild + steps: + - task: maven@4 + inputs: + mavemPOMFile: 'pom.xml' + publishJUnitResults: 'true' + testResultFiles: 'default' + jdkVersionOption: '1.17' + goals: 'pacakge' \ No newline at end of file