-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from cchantep/feature/33
New Play JDBC module (with DSL)
- Loading branch information
Showing
36 changed files
with
1,101 additions
and
503 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#! /bin/bash | ||
|
||
if [ "$TRAVIS_SCALA_VERSION" = "2.10.5" -a `javac -version 2>&1 | grep 1.7 | wc -l` -eq 1 ]; then | ||
echo "[INFO] Check the source format and backward compatibility" | ||
|
||
sbt ++$TRAVIS_SCALA_VERSION scalariformFormat test:scalariformFormat > /dev/null | ||
git diff --exit-code || (cat >> /dev/stdout <<EOF | ||
ERROR: Scalariform check failed, see differences above. | ||
To fix, format your sources using sbt scalariformFormat test:scalariformFormat before submitting a pull request. | ||
Additionally, please squash your commits (eg, use git commit --amend) if you're going to update this pull request. | ||
EOF | ||
false | ||
) | ||
|
||
#sbt ++$TRAVIS_SCALA_VERSION ";error ;mimaReportBinaryIssues" || exit 2 | ||
fi | ||
|
||
sbt ++$TRAVIS_SCALA_VERSION test-only |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.