Skip to content

Commit 449ef57

Browse files
committed
next shot; running into trouble with reflective calls (Action.Trigger)
1 parent 095c9b3 commit 449ef57

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

build.sbt

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
lazy val scalaTestVersion = "3.2.2"
1+
lazy val scalaTestVersion = "3.2.3"
22

33
lazy val commonSettings = Seq(
44
crossScalaVersions += "3.0.0-M1",
@@ -15,13 +15,10 @@ lazy val swing = project.in(file("."))
1515
scalaModuleMimaPreviousVersion := Some("2.1.0"),
1616
// set the prompt (for this build) to include the project id.
1717
ThisBuild / shellPrompt := { state => Project.extract(state).currentRef.project + "> " },
18-
libraryDependencies ++= {
19-
if (scalaVersion.value == "3.0.0-M1") Nil else
20-
Seq(
21-
"org.scalatest" %% "scalatest-flatspec" % scalaTestVersion % Test,
22-
"org.scalatest" %% "scalatest-shouldmatchers" % scalaTestVersion % Test,
23-
)
24-
},
18+
libraryDependencies ++= Seq(
19+
"org.scalatest" %% "scalatest-flatspec" % scalaTestVersion % Test,
20+
"org.scalatest" %% "scalatest-shouldmatchers" % scalaTestVersion % Test,
21+
),
2522
// Adds a `src/main/scala-2.13+` source directory for Scala 2.13 and newer
2623
// and a `src/main/scala-2.13-` source directory for Scala version older than 2.13
2724
Compile / unmanagedSourceDirectories += {

0 commit comments

Comments
 (0)