From cca1f4350ebb592b745fe578067637fc1dfdefd5 Mon Sep 17 00:00:00 2001 From: Kiranteja623 <100252762+Kiranteja623@users.noreply.github.com> Date: Thu, 16 Feb 2023 16:55:53 +0530 Subject: [PATCH] Update azure-pipelines-1.yml for Azure Pipelines --- azure-pipelines-1.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml index 268c931fb..cbd12678f 100644 --- a/azure-pipelines-1.yml +++ b/azure-pipelines-1.yml @@ -1,13 +1,15 @@ --- -pool: +pool: name: Default trigger: - main -steps: - - task: Maven@3 - inputs: - mavenPOMFile: 'pom.xml' - publishJUnitResults: true - testResultsFiles: '**/surefire-reports/TEST-*.xml' - JDKVersion: '1.17' - goals: 'package' \ No newline at end of file +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' \ No newline at end of file