Skip to content

Commit

Permalink
Fix dependencies for 2.12.
Browse files Browse the repository at this point in the history
Conflicts:
	proptest/build.sbt
	scalapb-runtime/build.sbt
  • Loading branch information
thesamet committed Sep 5, 2015
1 parent 0f1abcb commit f42782c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sudo: false
scala:
- 2.10.4
- 2.11.6
- 2.12.0-M2
- 2.12.0-M1

# These directories are cached to S3 at the end of the build
cache:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sonatypeSettings

scalaVersion in ThisBuild := "2.11.6"

crossScalaVersions in ThisBuild := Seq("2.10.5", "2.11.6", "2.12.0-M2")
crossScalaVersions in ThisBuild := Seq("2.10.5", "2.11.6", "2.12.0-M1")

organization in ThisBuild := "com.trueaccord.scalapb"

Expand Down
2 changes: 1 addition & 1 deletion proptest/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ libraryDependencies ++= Seq(
"com.google.protobuf" % "protobuf-java" % "3.0.0-alpha-3",
"com.trueaccord.lenses" %% "lenses" % "0.4",
"org.scalacheck" %% "scalacheck" % "1.12.4" % "test",
"org.scalatest" %% "scalatest" % "2.2.4" % "test"
"org.scalatest" %% "scalatest" % (if (scalaVersion.value.startsWith("2.12")) "2.2.5-M1" else "2.2.5") % "test"
)

libraryDependencies <+= (scalaVersion) { v => "org.scala-lang" % "scala-compiler" % v }
Expand Down
2 changes: 1 addition & 1 deletion scalapb-runtime/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name := "scalapb-runtime"

libraryDependencies ++= Seq(
"com.google.protobuf" % "protobuf-java" % "3.0.0-alpha-3",
"com.trueaccord.lenses" %% "lenses" % "0.4",
"com.trueaccord.lenses" %% "lenses" % "0.4.1",
"org.scalacheck" %% "scalacheck" % "1.12.4" % "test",
"org.scalatest" %% "scalatest" % "2.2.4" % "test"
)
Expand Down

0 comments on commit f42782c

Please sign in to comment.