Skip to content

Commit

Permalink
next try
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Nov 3, 2016
1 parent f7ac867 commit 867e437
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
language: scala
scala:
- "2.12.0"
- "2.11.8"
- 2.12.0
- 2.11.8
jdk:
- oraclejdk8
script:
- if [ "$TRAVIS_SCALA_VERSION" == "2.11.8" ]; then
sbt ++$TRAVIS_SCALA_VERSION clean coverage test;
else
sbt ++$TRAVIS_SCALA_VERSION clean test;
fi
after_success:
- if [ "$TRAVIS_SCALA_VERSION" == "2.11.8" ]; then
sbt ++$TRAVIS_SCALA_VERSION coveralls;
fi
script: |
if [[ "$TRAVIS_SCALA_VERSION" == 2.11.* ]]; then
sbt ++$TRAVIS_SCALA_VERSION clean coverage test
else
sbt ++$TRAVIS_SCALA_VERSION clean test
fi
after_success: |
if [[ "$TRAVIS_SCALA_VERSION" == 2.11.* ]]; then
sbt ++$TRAVIS_SCALA_VERSION coveralls
fi
cache:
directories:
- $HOME/.ivy2/cache
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ resolvers += "jgit-repo" at "http://download.eclipse.org/jgit/maven"
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.6.4")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "0.8.1")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.3")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.3.5")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.4.0")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.1.0")

0 comments on commit 867e437

Please sign in to comment.