Add files via upload

Added Azure pipelines
This commit is contained in:
SHAIK.SOHAIL 2023-02-06 10:42:50 +05:30 committed by GitHub
parent ca055dbbe1
commit 14373206c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
azure-pipelines.yaml Normal file
View file

@ -0,0 +1,22 @@
---
pool:
name: "Azure Pipelines"
vmImage: "ubuntu-latest"
trigger:
- main
stages:
- stage: Build
displayName: CI
jobs:
- job: MavenJob
displayName: Maven
steps:
- task: Maven@3
inputs:
mavenPOMFile: 'pom.xml'
publishJUnitResults: true
goals: 'package'
testResultsFiles: '**/surefire-reports/TEST-*.xml'
jdkVersionOption: '1.17'