Remove scala-async dep as it is not used (#5535)

This commit is contained in:
Chris Stewart 2024-04-21 08:15:32 -05:00 committed by GitHub
parent 899d491683
commit 368e0ac3d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,8 +32,6 @@ object Deps {
val nativeLoaderV = "2.5.0"
val typesafeConfigV = "1.4.3"
val asyncNewScalaV = "1.0.1"
val flywayV =
"9.2.1" //https://flywaydb.org/documentation/learnmore/releaseNotes
val postgresV = "42.7.3" //https://jdbc.postgresql.org/
@ -251,9 +249,6 @@ object Deps {
object Test {
val newAsync =
"org.scala-lang.modules" %% "scala-async" % V.asyncNewScalaV % "test" withSources () withJavadoc ()
val junitInterface =
"com.github.sbt" % "junit-interface" % V.junitV % "test" withSources () withJavadoc ()
val logback = Compile.logback % "test"
@ -411,7 +406,6 @@ object Deps {
Test.logback,
Test.scalaTest.value,
Test.scalacheck.value,
Test.newAsync,
Test.scalaCollectionCompat
)
}