Skip to content

Commit

Permalink
Update versions of Scala, libraries & plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
ppiotrow committed Jan 2, 2016
1 parent 477c875 commit 5b174b3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
language: scala

scala: 2.11.1
scala: 2.11.7

env:
- SBT_OPTS="-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:PermSize=256M -XX:MaxPermSize=512M"

script:
- sbt clean coverage test
after_success:
- export COVERALLS_REPO_TOKEN=KaV31nMn63pJSb6hSLsbT97lfgBtB8VEL
- sbt coveralls
10 changes: 3 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,21 @@ licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

organization := "com.github.verbalexpressions"

scalaVersion := "2.11.1"
scalaVersion := "2.11.7"

crossScalaVersions := Seq("2.10.4", "2.11.1")
crossScalaVersions := Seq("2.10.6", "2.11.7")

scalacOptions ++= Seq(
"-unchecked", "-deprecation", "-feature",
"-language:postfixOps,implicitConversions,experimental.macros,dynamics,existentials,higherKinds"
)

libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "2.3.12" % "test"
"org.specs2" %% "specs2" % "2.3.13" % "test"
)

sonatypeSettings

instrumentSettings

CoverallsPlugin.coverallsSettings

autoCompilerPlugins := true

pomExtra := {
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.2
sbt.version=0.13.9
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.2.1")

addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3")

addSbtPlugin("org.scoverage" %% "sbt-scoverage" % "0.99.5")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.0.4")

addSbtPlugin("com.sksamuel.scoverage" %% "sbt-coveralls" % "0.0.5")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.0.0")

addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.6")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.9")

0 comments on commit 5b174b3

Please sign in to comment.