-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
30 lines (22 loc) · 864 Bytes
/
build.sbt
File metadata and controls
30 lines (22 loc) · 864 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
27
28
29
30
name := "Mayank_K_Rastogi_project"
version := "0.1"
scalaVersion := "2.12.8"
// Merge strategy to avoid deduplicate errors
assemblyMergeStrategy in assembly := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x => MergeStrategy.first
}
libraryDependencies ++= Seq(
// Typesafe Configuration Library
"com.typesafe" % "config" % "1.3.2",
// 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.3.1",
// CloudSim Plus
"org.cloudsimplus" % "cloudsim-plus" % "4.3.2",
// Scalatest testing framework
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
)
mainClass in(Compile, run) := Some("cs441.project.cloudsim.SimulationDriver")
mainClass in assembly := Some("cs441.project.cloudsim.SimulationDriver")