-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
20 lines (17 loc) · 764 Bytes
/
build.sbt
File metadata and controls
20 lines (17 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
val rmtest = (project in file("."))
.settings(
assembly / mainClass := Some("Stream")
// more settings here ...
)
scalaVersion := "3.2.1"
resolvers += ("snapshots" at "https://oss.sonatype.org/content/repositories/snapshots")
libraryDependencies ++= Seq(
"org.reactivemongo" %% "reactivemongo" % "1.1.0-275c4ca-RC7-SNAPSHOT",
"org.reactivemongo" %% "reactivemongo-akkastream" % "1.1.0-RC6",
"org.slf4j" % "slf4j-api" % "2.0.3"
/* "org.reactivemongo" % "reactivemongo-shaded-native" % "1.1.0-RC6-linux-x86-64" */
/* "org.reactivemongo" % "reactivemongo-shaded" % "1.1.0-RC6" */
/* "org.reactivemongo" %% "reactivemongo" % "1.1.0-RC6-SNAPSHOT", */
/* "org.reactivemongo" %% "reactivemongo-bson-api" % "1.1.0-RC6" */
)
exportJars := true