Skip to content

Commit

Permalink
Add support for ORDS 3.0.10 (OraOpenSource#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
tschf authored Jun 30, 2017
1 parent 600a5bc commit 9c323ec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

Expand Down
3 changes: 2 additions & 1 deletion scripts/config_validation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion scripts/ords.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9c323ec

Please sign in to comment.