* Remove @switch when it doesn't take effect * Use ActorRef.noSender * Minor tweaks to SchedulerSpec * Disambiguate TypedActor for Scala 3 * Bump ScalaTest to a version compatible with Scala 3 * Bump ScalaCheck * Disambiguate Event in SupervisorHierarchySpec * Scala 3 compatible EventBusSpec * Prevent private unused variables to be erased by Scala 3 * Bump mockito * Explicit actorRef2Scala import * restore original .scalafix.conf * Scala 3 compatible tailrec * Reminder to re add switch annotation in case * Move to nowarn instead of silencer * Bump to Scala 2.12.13 * Cross compatible annotations * fix docs generation * adapt the build for Scala 3 * fix errors but bus * remove more SerialVersion from trait * scalacheck only from scalatest * cross-compile akka-actor-tests * restore cross-compilation * early initializers workaround * scalacheck switch * cross compatible FSM.State class * cross compatible LARS spec * Change results to pass LineNumberSpec * fix stackoverflow in AsyncDnsResolverIntegrationSpec * FSM.State unapply * fix Scala 2.13 mima * SerialVersionRemover compiler plugin * removed unused nowarns
31 lines
1.6 KiB
Scala
31 lines
1.6 KiB
Scala
libraryDependencies += Defaults.sbtPluginExtra(
|
|
"com.eed3si9n" % "sbt-assembly" % "0.15.0",
|
|
(sbtBinaryVersion in pluginCrossBuild).value,
|
|
(scalaBinaryVersion in pluginCrossBuild).value)
|
|
|
|
// these comment markers are for including code into the docs
|
|
//#sbt-multi-jvm
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-multi-jvm" % "0.4.0")
|
|
//#sbt-multi-jvm
|
|
|
|
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.6.0")
|
|
addSbtPlugin("com.lightbend.sbt" % "sbt-bill-of-materials" % "1.0.1")
|
|
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")
|
|
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.24")
|
|
// sbt-osgi 0.9.5 is available but breaks including jdk9-only classes
|
|
// sbt-osgi 0.9.6 is available but breaks populating akka-protobuf-v3
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.4")
|
|
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.8.1")
|
|
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.1.1")
|
|
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.3")
|
|
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.0")
|
|
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.0")
|
|
addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1")
|
|
addSbtPlugin("com.lightbend.akka" % "sbt-paradox-akka" % "0.37")
|
|
addSbtPlugin("com.lightbend" % "sbt-whitesource" % "0.1.18")
|
|
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.0")
|
|
addSbtPlugin("com.hpe.sbt" % "sbt-pull-request-validator" % "1.0.0")
|
|
addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.25")
|
|
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1")
|
|
addSbtPlugin("com.lightbend.sbt" % "sbt-publish-rsync" % "0.2")
|
|
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.1")
|