Cinnamon with RestartXXX operators

This commit is contained in:
Pavel Kachalouski
2025-03-18 09:13:56 +01:00
commit dde793d631
12 changed files with 186 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import Versions._
import sbt._
case object Versions {
val akkaVersion = "2.10.0"
val logbackVersion = "1.5.8"
val scalaLoggingVersion = "3.9.5"
val scalaTestVersion = "3.2.19"
}
case object Dependencies {
val akkaStream = "com.typesafe.akka" %% "akka-stream" % akkaVersion
val akkaStreamTyped = "com.typesafe.akka" %% "akka-stream-typed" % akkaVersion
val akkaTyped = "com.typesafe.akka" %% "akka-actor-typed" % akkaVersion
val akkaTypedTestkit = "com.typesafe.akka" %% "akka-actor-testkit-typed" % akkaVersion
val logback = "ch.qos.logback" % "logback-classic" % logbackVersion
val scalactic = "org.scalactic" %% "scalactic" % scalaTestVersion
val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % scalaLoggingVersion
val scalaTest = "org.scalatest" %% "scalatest" % scalaTestVersion
}

1
project/build.properties Normal file
View File

@@ -0,0 +1 @@
sbt.version=1.10.2

13
project/metals.sbt Normal file
View File

@@ -0,0 +1,13 @@
// format: off
// DO NOT EDIT! This file is auto-generated.
// This plugin enables semantic information to be produced by sbt.
// It also adds support for debugging using the Debug Adapter Protocol
addSbtPlugin("org.scalameta" % "sbt-metals" % "1.5.1")
// This plugin adds the BSP debug capability to sbt server.
addSbtPlugin("ch.epfl.scala" % "sbt-debug-adapter" % "4.2.2")
// format: on

1
project/plugins.sbt Normal file
View File

@@ -0,0 +1 @@
addSbtPlugin("com.lightbend.cinnamon" % "sbt-cinnamon" % "2.21.2")

View File

@@ -0,0 +1,14 @@
// format: off
// DO NOT EDIT! This file is auto-generated.
// This plugin enables semantic information to be produced by sbt.
// It also adds support for debugging using the Debug Adapter Protocol
addSbtPlugin("org.scalameta" % "sbt-metals" % "1.5.1")
// This plugin makes sure that the JDI tools are in the sbt classpath.
// JDI tools are used by the debug adapter server.
addSbtPlugin("com.github.sbt" % "sbt-jdi-tools" % "1.2.0")
// format: on