Skip to content

Commit

Permalink
Updated for latest versions of ORDS and APEX as-of 2018-10-05
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime-tremblay committed Oct 5, 2018
1 parent af3f959 commit 735c206
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -15,8 +15,8 @@ App | Version | Description
------ | ------ | ------
Oracle XE | 11.2.0.2.0 |
SQLcl | 4.2.0 | Command line SQL
APEX | 18.1 | Currently supports APEX 18.x, 5.x and APEX 4.x releases. Just reference the appropriate file in `config.properties`
ORDS | 18.1.1 |
APEX | 18.2 | Currently supports APEX 18.x, 5.x and APEX 4.x releases. Just reference the appropriate file in `config.properties`
ORDS | 18.3.0 |
Tomcat | 7.0.57 |
Node JS | 8.x |
APEX Office Print| 3.0 | Currently only supports 5.x. Disable the option to install this add-on if you are installing versions earlier or later than 5.x
Expand Down
4 changes: 3 additions & 1 deletion scripts/config_validation.sh
Expand Up @@ -75,7 +75,9 @@ if [ "$OOS_MODULE_ORDS" = "Y" ]; then
&& [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.11" ]] \
&& [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.12" ]] \
&& [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "17.4.1" ]] \
&& [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "18.1.1" ]]; then
&& [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "18.1.1" ]] \
&& [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "18.2.0" ]] \
&& [[ ! "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "18.3.0" ]]; 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
Expand Down
4 changes: 3 additions & 1 deletion scripts/ords.sh
Expand Up @@ -78,7 +78,9 @@ elif [[ "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.5"
|| "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.11"
|| "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "3.0.12"
|| "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "17.4.1"
|| "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "18.1.1" ]]; then
|| "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "18.1.1"
|| "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "18.2.0"
|| "${ORDS_MAJOR}.${ORDS_MINOR}.${ORDS_REVISION}" == "18.3.0" ]]; then
java -jar ords.war install simple
fi

Expand Down

0 comments on commit 735c206

Please sign in to comment.