From dee0fb573a99816bc4b1d197cac6a3de88e7039f Mon Sep 17 00:00:00 2001 From: Mark Iantorno Date: Thu, 21 Jan 2021 10:10:46 -0500 Subject: [PATCH] Excluding cli and report module from deployment --- master-branch-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/master-branch-pipeline.yml b/master-branch-pipeline.yml index 92211e3c5..da4881cca 100644 --- a/master-branch-pipeline.yml +++ b/master-branch-pipeline.yml @@ -86,7 +86,7 @@ steps: inputs: mavenPomFile: '$(System.DefaultWorkingDirectory)/pom.xml' goals: deploy - options: '--settings $(System.DefaultWorkingDirectory)/settings.xml -DdeployToSonatype' + options: '--settings $(System.DefaultWorkingDirectory)/settings.xml -pl "!org.hl7.fhir.report, !org.hl7.fhir.validation.cli" -DdeployToSonatype' publishJUnitResults: false # Deploy the SNAPSHOT artifact to GitHub packages. @@ -96,5 +96,5 @@ steps: inputs: mavenPomFile: '$(System.DefaultWorkingDirectory)/pom.xml' goals: deploy - options: '--settings $(System.DefaultWorkingDirectory)/settings.xml -Dmaven.test.skip -DdeployToGitHub' + options: '--settings $(System.DefaultWorkingDirectory)/settings.xml -pl "!org.hl7.fhir.report, !org.hl7.fhir.validation.cli" -Dmaven.test.skip -DdeployToGitHub' publishJUnitResults: false