From 124bef0e8bc302ed3f325c35babfe7079e93068b Mon Sep 17 00:00:00 2001 From: Mark Iantorno Date: Fri, 21 May 2021 15:40:05 -0400 Subject: [PATCH] adding maven exec command to let me run tests on validator jar so people stop breaking it (#510) --- org.hl7.fhir.validation.cli/pom.xml | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/org.hl7.fhir.validation.cli/pom.xml b/org.hl7.fhir.validation.cli/pom.xml index 6cbd045a9..f94020519 100644 --- a/org.hl7.fhir.validation.cli/pom.xml +++ b/org.hl7.fhir.validation.cli/pom.xml @@ -114,7 +114,28 @@ true - + + org.codehaus.mojo + exec-maven-plugin + 1.2.1 + + + default-cli + + exec + + + java + + /tmp + + -jar + ${basedir}/target/org.hl7.fhir.validation.cli-${project.version}.jar + + + + +