-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
41 lines (36 loc) · 2.07 KB
/
build.sbt
File metadata and controls
41 lines (36 loc) · 2.07 KB
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
33
34
35
36
37
38
39
// Library versions
lazy val scalatestVersion = "3.0.4"
lazy val velocityVersion = "2.0"
// Modules
lazy val root = (project in file(".")).
settings(
organization := "com.simplexportal.cms",
scalaVersion := "2.12.4",
mainClass in assembly := Some("com.simplexportal.core.webserver.WebServer"),
assemblyJarName in assembly := s"simplexportal-${version.value}.jar",
name := "Simplex CMS",
libraryDependencies ++=
Seq( // compile scope dependencies
"com.fasterxml.woodstox" % "woodstox-core" % "5.0.3",
// "org.apache.velocity" % "velocity-engine-core" % velocityVersion,
// "org.apache.velocity" % "velocity-tools" % velocityVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.4",
"org.json4s" %% "json4s-native" % "3.5.3",
"org.json4s" %% "json4s-jackson" % "3.5.3",
"org.json4s" %% "json4s-ext" % "3.5.3",
"com.typesafe" % "config" % "1.3.2",
"org.scala-lang.modules" %% "scala-xml" % "1.1.0",
"com.github.pathikrit" %% "better-files" % "3.4.0",
"com.iheart" %% "ficus" % "1.4.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.8.0",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.akka" %% "akka-http" % "10.1.0",
"com.typesafe.akka" %% "akka-stream" % "2.5.11",
"com.vladsch.flexmark" % "flexmark-all" % "0.32.18"
).map(_ % Compile) ++
Seq( // Test scope dependencies
"org.scalatest" %% "scalatest" % scalatestVersion,
"org.scalactic" %% "scalactic" % scalatestVersion,
"org.scalamock" %% "scalamock" % "4.1.0"
).map(_ % Test)
)