Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
upgrade sbt, crossbuild for scala 2.11-13
Browse files Browse the repository at this point in the history
  • Loading branch information
oker1 committed Apr 10, 2019
1 parent 4fde43c commit 2ec705c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
13 changes: 9 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ version := "1.0.0"

scalaVersion := "2.11.7"

// Change this to another test framework if you prefer
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.0-M9" % "test"
lazy val scala213 = "2.13.0-RC1"
lazy val scala212 = "2.12.8"
lazy val scala211 = "2.11.12"
lazy val supportedScalaVersions = List(scala213, scala212, scala211)

// Uncomment to use Akka
//libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.11"
lazy val root = (project in file("."))
.settings(
crossScalaVersions := supportedScalaVersions,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.7" % "test"
)

2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Activator-generated Properties
#Wed Oct 07 20:17:42 PDT 2015
template.uuid=e17acfbb-1ff5-41f5-b8cf-2c40be6a8340
sbt.version=0.13.8
sbt.version=1.2.8

0 comments on commit 2ec705c

Please sign in to comment.