azure-pipelines.yml

This commit is contained in:
nagarjuna33 2023-02-13 08:02:51 +05:30 committed by GitHub
parent 9ecdc1111e
commit 514f9663d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
azure-pipelines.yml Normal file
View file

@ -0,0 +1,23 @@
---
pool:
name: "Azure Pipelines"
vmImage: ubuntu-latest
name: springpet
trigger:
main
stages:
- stage: stage1
displayName: spring-stage1
jobs:
- job: job1
displayName: spring-job1
steps:
- task: Maven@3
inputs:
mavenPOMFile: 'pom.xml'
goals: 'package'
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
javaHomeOption: 'JDKVersion'
jdkVersionOption: 1.11