Set up CI with Azure Pipelines

[skip ci]
This commit is contained in:
Kiranteja623 2023-02-14 20:03:52 +05:30
parent ca055dbbe1
commit 947a740f86

16
azure-pipelines.yml Normal file
View file

@ -0,0 +1,16 @@
---
pool:
name: azurepipeline
Vmimage: ubuntu-latest
trigger:
- main
jobs:
- job: package
displayName: build the package
steps:
- task: Maven@3
inputs:
mavenPOMFile: 'pom.xml'
goals: 'package'
testResultsFiles: '**/surefire-reports/TEST-*.xml'
JDKVersion: '1.17'