Skip to content

Commit

Permalink
build: enable cross build for scala 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
drbild committed Aug 17, 2017
1 parent f11b9d6 commit 33ebc15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ lazy val core = (
lazy val play = (
TristateProject("tristate-play")
settings(
name := "tristate-play",
name := "tristate-play",
crossScalaVersions := Seq(V.scala_2_11),
libraryDependencies ++= Seq(
Libs.playJson,
Libs.specs2
Expand Down
1 change: 1 addition & 0 deletions project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ object Common {

val commonSettings: Seq[Setting[_]] = Seq(
scalaVersion := V.scala,
crossScalaVersions := Seq(V.scala_2_11, V.scala_2_12),

scalacOptions ++= Seq(
"-deprecation",
Expand Down

0 comments on commit 33ebc15

Please sign in to comment.