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