Skip to content

Commit

Permalink
Fixed crossScalaVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
ssong-van committed May 12, 2017
1 parent dc129b0 commit 134ae60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ organization := "com.hootsuite"

version := Version.project

crossScalaVersions := Version.scala
scalaVersion := Version.scala

crossScalaVersions := Version.crossScala

resolvers += Resolver.jcenterRepo

Expand Down
3 changes: 2 additions & 1 deletion project/Version.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
object Version {
val project = "0.8.0"
val scala = Seq("2.11.8", "2.12.1")
val scala = "2.12.1"
val crossScala = Seq("2.11.8", "2.12.1")
val akka = "2.4.12"
val sprayJson = "1.3.3"
val rediscala = "1.8.0"
Expand Down

0 comments on commit 134ae60

Please sign in to comment.