aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhh <jorge.hernandez-herrero@att.com>2019-04-29 18:45:55 -0500
committerjhh <jorge.hernandez-herrero@att.com>2019-04-29 18:47:12 -0500
commitab30d9c18a3428ffe4499eb561ed9f0e665be290 (patch)
tree9adfc000102589b084a392e8468cce09da9db848
parent6aeba035926698a71eea3bf7275c00f5975e1b7e (diff)
No dependency.json manipulation in brmsgw
There are multiple VERSIONS that make it to the dependency.json since some libraries are coming from models and others from drools-applications. Change-Id: Ide1764962531e09ed5fc733cd18d22550d53c7da Issue-ID: POLICY-1712 Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
-rwxr-xr-xconfig/pe/brmsgw-tweaks.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/config/pe/brmsgw-tweaks.sh b/config/pe/brmsgw-tweaks.sh
index 426db9dd..2df2c295 100755
--- a/config/pe/brmsgw-tweaks.sh
+++ b/config/pe/brmsgw-tweaks.sh
@@ -38,14 +38,3 @@ for CONFIG in ${PROPS_RUNTIME} ${PROPS_INSTALL}; do
sed -i -e "s/brms.dependency.version=.*/brms.dependency.version=${version}/g" "${CONFIG}"
fi
done
-
-DEPS_JSON_RUNTIME="${POLICY_HOME}/servers/brmsgw/dependency.json"
-DEPS_JSON_INSTALL="${POLICY_HOME}/install/servers/brmsgw/dependency.json"
-
-for DEP in ${DEPS_JSON_RUNTIME} ${DEPS_JSON_INSTALL}; do
- if [ ! -f "${DEP}" ]; then
- echo "warning: configuration does not exist: ${DEP}"
- else
- sed -i -e "s/\"version\":.*-SNAPSHOT\"/\"version\": \"${version}\"/g" "${DEP}"
- fi
-done