-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
32 lines (28 loc) · 1.09 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.12" //"2.13.10"
lazy val root = (project in file("."))
.settings(
name := "ZBMedPrePrints",
Test / parallelExecution := false,
Test / fork := true
)
val xmlVersion = "2.2.0" //"2.1.0"
val mongoVersion = "4.11.0" //"4.9.0"
val logback = "1.4.11" //"1.4.7"
val logging = "3.9.5"
val scalatest = "3.2.17" //"3.2.15"
val gsonVersion = "2.10.1"
val jsonOrgVersion = "20220924"
val httpClientVersion = "5.2.1"
val playJsonVersion = "2.10.2" //"2.10.0-RC7"
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % xmlVersion,
"org.mongodb" % "mongodb-driver-sync" % mongoVersion,
"ch.qos.logback" % "logback-classic" % logback,
"com.typesafe.scala-logging" %% "scala-logging" % logging,
"org.scalatest" %% "scalatest" % scalatest % "test",
"com.google.code.gson" % "gson" % gsonVersion,
"org.apache.httpcomponents.client5" % "httpclient5" % httpClientVersion,
"org.apache.httpcomponents.client5" % "httpclient5-fluent" % httpClientVersion,
"com.typesafe.play" %% "play-json" % playJsonVersion
)