Skip to content

Commit e2ecee2

Browse files
author
Matteo Di Pirro
committed
Add new module for Scala2 libraries
1 parent 2c06bca commit e2ecee2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

build.sbt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,17 @@ lazy val scala_libraries_3 = (project in file("scala-libraries-3"))
284284
libraryDependencies += "com.lihaoyi" %% "os-lib" % "0.8.1"
285285
)
286286

287+
lazy val scala_libraries_4 = (project in file("scala-libraries-4"))
288+
.settings(
289+
name := "scala-libraries",
290+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.2" % Test,
291+
libraryDependencies ++= Seq(
292+
"org.scala-lang.modules" %% "scala-async" % "1.0.1",
293+
"org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided
294+
),
295+
scalacOptions += "-Xasync"
296+
)
297+
287298
lazy val scala_strings = (project in file("scala-strings"))
288299
.settings(
289300
name := "scala-strings",

0 commit comments

Comments
 (0)