Skip to content

Commit 74cace4

Browse files
authored
Merge pull request #1772 from IBM/issue-1611
Signed-off-by: Lee Surprenant <[email protected]>
2 parents 8092956 + e75fcb7 commit 74cace4

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

build/release/build.sh

+8-9
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ popd > /dev/null
3333
# _mvn - executes mvn with a set goals
3434
# Reference https://maven.apache.org/plugins/maven-javadoc-plugin/
3535
# Reference https://maven.apache.org/plugins/maven-source-plugin/
36-
function _mvn {
36+
function _mvn {
3737
announce "${FUNCNAME[0]}"
3838
PROJECT_PATH="$1"
3939
PROFILES="$2"
@@ -46,7 +46,7 @@ function _mvn {
4646
}
4747

4848
# _mvn2 - executes mvn to prep the install
49-
function _mvn2 {
49+
function _mvn2 {
5050
announce "${FUNCNAME[0]}"
5151
PROJECT_PATH="$1"
5252
PROFILES="$2"
@@ -56,8 +56,8 @@ function _mvn2 {
5656
check_and_fail $? "${FUNCNAME[0]} - stopped - ${PROJECT_PATH}"
5757
}
5858

59-
# build_all - build all versions
60-
function build_all {
59+
# build_all - build all versions
60+
function build_all {
6161
_mvn 'fhir-tools' '-Pdeploy-bintray,fhir-javadocs'
6262
_mvn 'fhir-examples' '-Pdeploy-bintray,fhir-javadocs'
6363
_mvn2 'fhir-parent' '-Pdeploy-bintray'
@@ -69,19 +69,18 @@ function build_all {
6969
PROFILES_ARR+=(jdbc-all-tests)
7070
PROFILES=$(IFS=, ; echo "${PROFILES_ARR[*]}")
7171
# To add a profile to the validation zip, append to the string.
72-
# fhir-ig-davinci-hrex,fhir-ig-davinci-pdex are temporarily not included.
73-
_mvn 'fhir-parent' "-Pdeploy-bintray,fhir-javadocs,fhir-validation-distribution,fhir-ig-carin-bb,fhir-ig-davinci-pdex-formulary,fhir-ig-davinci-pdex-plan-net,fhir-ig-mcode,fhir-ig-us-core,fhir-term,${PROFILES}"
72+
_mvn 'fhir-parent' "-Pdeploy-bintray,fhir-javadocs,fhir-validation-distribution,fhir-ig-carin-bb,fhir-ig-davinci-pdex-formulary,fhir-ig-davinci-pdex-plan-net,fhir-ig-davinci-hrex,fhir-ig-davinci-pdex,fhir-ig-mcode,fhir-ig-us-core,fhir-term,${PROFILES}"
7473
}
7574

7675
###############################################################################
7776
# check to see if mvn exists
7877
if which mvn | grep -i mvn
79-
then
78+
then
8079
debugging 'mvn is found!'
81-
else
80+
else
8281
warn 'mvn is not found!'
8382
fi
8483

8584
build_all
8685

87-
# EOF
86+
# EOF

fhir-examples/src/main/resources/profiles-hrex-json.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
OK json/profiles/fhir-ig-davinci-hrex/Bundle-subscription-notification-with-data.json
2+
OK json/profiles/fhir-ig-davinci-hrex/Bundle-task-poll-response.json
13
OK json/profiles/fhir-ig-davinci-hrex/Task-query-initial.json
24
OK json/profiles/fhir-ig-davinci-hrex/Task-document-complete.json
35
OK json/profiles/fhir-ig-davinci-hrex/Task-query-status.json

0 commit comments

Comments
 (0)