Skip to content

Commit 2252098

Browse files
committed
Fix Build
1 parent 14fae89 commit 2252098

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

travis/after_success.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ if [ $TRAVIS_REPO_SLUG == "mybatis/mybatis-dynamic-sql" ] && [ "$TRAVIS_PULL_REQ
2222
if [ $TRAVIS_JDK_VERSION == "oraclejdk8" ]; then
2323

2424
# Deploy to Sonatype
25-
../mvnw clean deploy -q --settings ../travis/settings.xml
25+
./mvnw clean deploy -q --settings ./travis/settings.xml
2626
echo -e "Successfully deployed SNAPSHOT artifacts to Sonatype under Travis job ${TRAVIS_JOB_NUMBER}"
2727

2828
# Deploy to Coveralls
29-
../mvnw clean test jacoco:report-integration coveralls:report -q --settings ../travis/settings.xml
29+
./mvnw clean test jacoco:report coveralls:report -q --settings ./travis/settings.xml
3030
echo -e "Successfully ran coveralls under Travis job ${TRAVIS_JOB_NUMBER}"
3131

3232
# Deploy to site
3333
# various issues exist currently in building this so comment for now
34-
# ../mvnw site site:deploy -q --settings ../travis/settings.xml
34+
# ./mvnw site site:deploy -q --settings ./travis/settings.xml
3535
# echo -e "Successfully deploy site under Travis job ${TRAVIS_JOB_NUMBER}"
3636
else
3737
echo "Java Version does not support additonal activity for travis CI"

0 commit comments

Comments
 (0)