Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix maven settings placeholder and added verbosity
  • Loading branch information
viniciusam committed Apr 6, 2017
commit 7676addf7fa7450e6a1de16bd40875f6fda20d1d
2 changes: 1 addition & 1 deletion .travis/install_utplsql.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -e
set -ev

# Download the specified version of utPLSQL.
curl -L -O "https://github.com/utPLSQL/utPLSQL/releases/download/$UTPLSQL_VERSION/$UTPLSQL_FILE.tar.gz"
Expand Down
3 changes: 2 additions & 1 deletion .travis/maven_cfg.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#!/bin/bash
set -e
set -ev
cd $(dirname $(readlink -f $0))

if [ "$ORACLE_OTN_USER" == "" ] || [ "$ORACLE_OTN_PASSWORD" == "" ]; then
echo "Oracle OTN username/password not specified."
exit 1
fi

MAVEN_SETTINGS=$HOME/.m2/settings.xml
Expand Down
4 changes: 2 additions & 2 deletions .travis/settings.tmpl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ under the License.
<servers>
<server>
<id>maven.oracle.com</id>
<username>###USERNAME###</username>
<password>###PASSWORD###</password>
<username>###ORACLE_OTN_USER###</username>
<password>###ORACLE_OTN_PASSWORD###</password>
<configuration>
<basicAuthScope>
<host>ANY</host>
Expand Down
2 changes: 1 addition & 1 deletion .travis/start_db.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -e
set -ev

# If docker credentials are not cached, do the login.
if [ ! -f $DOCKER_CFG/config.json ]; then
Expand Down