From 9c323eca4bc29fcf57030aa3f6a8305d166b80e3 Mon Sep 17 00:00:00 2001 From: Trent Schafer Date: Fri, 30 Jun 2017 09:15:03 -0400 Subject: [PATCH] Add support for ORDS 3.0.10 (#237) --- README.md | 2 +- scripts/config_validation.sh | 3 ++- scripts/ords.sh | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c290d38..c06eb40 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ App | Version | Description Oracle XE | 11.2.0.2.0 | SQLcl | 4.2.0 | Command line SQL APEX | 5.1.0.00.45 | Currently supports APEX 5.x and APEX 4.x releases. Just reference the appropriate file in `config.properties` -ORDS | 3.0.9.348.07.16 | +ORDS | 3.0.10.165.06.53 | Tomcat | 7.0.57 Node JS | 7.x | diff --git a/scripts/config_validation.sh b/scripts/config_validation.sh index f65a32a..53cb416 100644 --- a/scripts/config_validation.sh +++ b/scripts/config_validation.sh @@ -70,7 +70,8 @@ if [ "$OOS_MODULE_ORDS" = "Y" ]; then && [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.6" ]] \ && [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.7" ]] \ && [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.8" ]] \ - && [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.9" ]]; then + && [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.9" ]] \ + && [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.10" ]]; then echo "This version of ORDS is not yet supprted in OXAR" >&2 echo "Please report this at http://github.com/OraOpenSource/oxar/issues" >&2 exit 1 diff --git a/scripts/ords.sh b/scripts/ords.sh index 01bd9a6..44321ec 100644 --- a/scripts/ords.sh +++ b/scripts/ords.sh @@ -73,7 +73,8 @@ elif [[ "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.5" || "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.6" || "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.7" || "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.8" - || "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.9" ]]; then + || "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.9" + || "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.10" ]]; then java -jar ords.war install simple fi