Skip to content

Commit

Permalink
63: Updated Travis build to use the Maven wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Dec 17, 2019
1 parent 0f3106b commit b60499d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions travis_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ set -ev
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then
echo "Build on MacOSX: Pull Request"
mvn -f edelta.parent/pom.xml clean verify $ADDITIONAL
./mvnw -f edelta.parent/pom.xml clean verify $ADDITIONAL
else
echo "Skipping build on MacOSX for standard commit"
fi
else
echo "Build on Linux"
mvn -f edelta.parent/pom.xml clean verify $ADDITIONAL
./mvnw -f edelta.parent/pom.xml clean verify $ADDITIONAL
fi

# -Dtycho.disableP2Mirrors=true

0 comments on commit b60499d

Please sign in to comment.