We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fbe072 commit 83195adCopy full SHA for 83195ad
Makefile
@@ -39,13 +39,14 @@ test: download-dependencies
39
40
# build targets for SAM
41
# the target must be build-<RESOURCE_NAME>
42
+# note - we skip tests here as they will have already been run as part of the pipeline
43
build-FHIRValidatorUKCore: download-dependencies
- mvn clean package -Pcurrent
44
+ mvn clean package -Pcurrent -Dmaven.test.skip=true
45
mkdir -p $(ARTIFACTS_DIR)/lib
46
cp ./target/FHIRValidator-current.jar $(ARTIFACTS_DIR)/lib/
47
48
build-FHIRValidatorNHSDigital: download-dependencies
- mvn clean package -Plegacy
49
+ mvn clean package -Plegacy -Dmaven.test.skip=true
50
51
cp ./target/FHIRValidator-legacy.jar $(ARTIFACTS_DIR)/lib/
52
0 commit comments