From 41dace5c50889923aead6ad9d2cf47294c8b7cf5 Mon Sep 17 00:00:00 2001 From: James Flynn Date: Mon, 1 Mar 2021 21:58:15 +0000 Subject: [PATCH] Fixed: Maven task auto-updated by Azure DevOps --- azure-pipelines.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 664b9179d..91d97c5e5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -34,15 +34,14 @@ jobs: displayName: 'Maven Build, Test and Package' inputs: mavenPomFile: 'pom.xml' - publishJUnitResults: true - testResultsFiles: '**/TEST-*.xml' - testRunTitle: '$(Build.BuildNumber)' + mavenOptions: '-Xmx3072m' javaHomeOption: 'JDKVersion' jdkVersionOption: '1.11' - mavenVersionOption: 'Default' - mavenOptions: '-Xmx3072m' - mavenAuthenticateFeed: false - effectivePomSkip: false + jdkArchitectureOption: 'x64' + publishJUnitResults: true + testRunTitle: '$(Build.BuildNumber)' + testResultsFiles: '**/TEST-*.xml' + goals: 'package' - task: SonarCloudAnalyze@1 displayName: 'Run Sonarcloud Code Analysis'