@@ -33,7 +33,7 @@ popd > /dev/null
33
33
# _mvn - executes mvn with a set goals
34
34
# Reference https://maven.apache.org/plugins/maven-javadoc-plugin/
35
35
# Reference https://maven.apache.org/plugins/maven-source-plugin/
36
- function _mvn {
36
+ function _mvn {
37
37
announce " ${FUNCNAME[0]} "
38
38
PROJECT_PATH=" $1 "
39
39
PROFILES=" $2 "
@@ -46,7 +46,7 @@ function _mvn {
46
46
}
47
47
48
48
# _mvn2 - executes mvn to prep the install
49
- function _mvn2 {
49
+ function _mvn2 {
50
50
announce " ${FUNCNAME[0]} "
51
51
PROJECT_PATH=" $1 "
52
52
PROFILES=" $2 "
@@ -56,8 +56,8 @@ function _mvn2 {
56
56
check_and_fail $? " ${FUNCNAME[0]} - stopped - ${PROJECT_PATH} "
57
57
}
58
58
59
- # build_all - build all versions
60
- function build_all {
59
+ # build_all - build all versions
60
+ function build_all {
61
61
_mvn ' fhir-tools' ' -Pdeploy-bintray,fhir-javadocs'
62
62
_mvn ' fhir-examples' ' -Pdeploy-bintray,fhir-javadocs'
63
63
_mvn2 ' fhir-parent' ' -Pdeploy-bintray'
@@ -69,19 +69,18 @@ function build_all {
69
69
PROFILES_ARR+=(jdbc-all-tests)
70
70
PROFILES=$( IFS=, ; echo " ${PROFILES_ARR[*]} " )
71
71
# 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} "
74
73
}
75
74
76
75
# ##############################################################################
77
76
# check to see if mvn exists
78
77
if which mvn | grep -i mvn
79
- then
78
+ then
80
79
debugging ' mvn is found!'
81
- else
80
+ else
82
81
warn ' mvn is not found!'
83
82
fi
84
83
85
84
build_all
86
85
87
- # EOF
86
+ # EOF
0 commit comments