-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (19 loc) · 727 Bytes
/
build.sbt
File metadata and controls
26 lines (19 loc) · 727 Bytes
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
name := "mayank_k_rastogi_cs474_hw1"
version := "0.1"
scalaVersion := "2.12.10"
libraryDependencies ++= Seq(
// Typesafe Configuration Library
"com.typesafe" % "config" % "1.3.4",
// Logback logging framework
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
"org.gnieh" % "logback-config" % "0.4.0",
// ScalaJ Http Client
"org.scalaj" %% "scalaj-http" % "2.4.2",
// JSON (De)Serialization Libraries
"com.google.code.gson" % "gson" % "2.8.5",
"net.liftweb" %% "lift-json" % "3.3.0",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.10",
// Scalatest testing framework
"org.scalatest" %% "scalatest" % "3.0.8" % "test"
)