|
1 | 1 | name := "GenSym" |
2 | 2 |
|
3 | | -scalaVersion := "2.12.10" |
| 3 | +scalaVersion := "2.12.15" |
4 | 4 |
|
5 | 5 | resolvers += Resolver.sonatypeRepo("releases") |
6 | 6 |
|
@@ -43,21 +43,20 @@ val commonJavaOptions = Seq( |
43 | 43 | run / javaOptions ++= commonJavaOptions |
44 | 44 | Test / javaOptions ++= commonJavaOptions |
45 | 45 |
|
46 | | -val paradiseVersion = "2.1.0" |
| 46 | +val paradiseVersion = "2.1.1" |
47 | 47 | addCompilerPlugin("org.scalamacros" % "paradise" % paradiseVersion cross CrossVersion.full) |
48 | | -addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.11.3" cross CrossVersion.full) |
| 48 | +addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full) |
49 | 49 | addCompilerPlugin("com.github.tomasmikula" %% "pascal" % "0.3.5") |
50 | 50 | addCompilerPlugin("org.scala-lang.plugins" % "scala-continuations-plugin_2.12.0" % "1.0.3") |
51 | 51 | addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.0-M4") |
52 | 52 |
|
53 | 53 | lazy val Bench = config("bench").extend(Test) |
54 | 54 |
|
55 | | -fork in Bench := false |
56 | | -parallelExecution in Test := false |
57 | | -parallelExecution in Bench := false |
| 55 | +Bench / fork := false |
| 56 | +Test / parallelExecution := false |
| 57 | +Bench / parallelExecution := false |
58 | 58 |
|
59 | | -lazy val lms = ProjectRef(file("./third-party/lms-clean"), "lms-clean") |
60 | | - // .settings(fork := true) |
| 59 | +lazy val lms = (project in file("./third-party/lms-clean")) |
61 | 60 |
|
62 | 61 | lazy val gensym = (project in file(".")).dependsOn(lms % "test->test; compile->compile") |
63 | 62 | .configs(Bench) |
|
0 commit comments