Update azure-pipelines-1.yml for Azure Pipelines

This commit is contained in:
Kiranteja623 2023-02-16 16:55:53 +05:30
parent 76c0f3b09d
commit cca1f4350e

View file

@ -3,11 +3,13 @@ pool:
name: Default name: Default
trigger: trigger:
- main - main
steps: jobs:
- task: Maven@3 - job: package
inputs: displayName: build the package
mavenPOMFile: 'pom.xml' steps:
publishJUnitResults: true - task: Maven@3
testResultsFiles: '**/surefire-reports/TEST-*.xml' inputs:
JDKVersion: '1.17' mavenPOMFile: 'pom.xml'
goals: 'package' goals: 'package'
testResultsFiles: '**/surefire-reports/TEST-*.xml'
JDKVersion: '1.17'