Skip to content

Commit 7676add

Browse files
committed
Fix maven settings placeholder and added verbosity
1 parent 0d4837a commit 7676add

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.travis/install_utplsql.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
set -e
2+
set -ev
33

44
# Download the specified version of utPLSQL.
55
curl -L -O "https://github.com/utPLSQL/utPLSQL/releases/download/$UTPLSQL_VERSION/$UTPLSQL_FILE.tar.gz"

.travis/maven_cfg.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/bin/bash
2-
set -e
2+
set -ev
33
cd $(dirname $(readlink -f $0))
44

55
if [ "$ORACLE_OTN_USER" == "" ] || [ "$ORACLE_OTN_PASSWORD" == "" ]; then
66
echo "Oracle OTN username/password not specified."
7+
exit 1
78
fi
89

910
MAVEN_SETTINGS=$HOME/.m2/settings.xml

.travis/settings.tmpl.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ under the License.
2626
<servers>
2727
<server>
2828
<id>maven.oracle.com</id>
29-
<username>###USERNAME###</username>
30-
<password>###PASSWORD###</password>
29+
<username>###ORACLE_OTN_USER###</username>
30+
<password>###ORACLE_OTN_PASSWORD###</password>
3131
<configuration>
3232
<basicAuthScope>
3333
<host>ANY</host>

.travis/start_db.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
set -e
2+
set -ev
33

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

0 commit comments

Comments
 (0)