forked from LuciaHG/astar_mg_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (17 loc) · 1.04 KB
/
build.sbt
File metadata and controls
26 lines (17 loc) · 1.04 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
name := "CCG-translator"
version := "0.1"
organization := "milos.unlimited"
scalaVersion := "2.12.8"
unmanagedBase := baseDirectory.value / "lib"
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.1"
libraryDependencies += "com.github.wookietreiber" %% "scala-chart" % "latest.integration" // for plotting
libraryDependencies += "com.itextpdf" % "itextpdf" % "5.5.6" // so plotting can be done in pdf
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test" // for testing
libraryDependencies += "org.yaml" % "snakeyaml" % "1.8" // for yaml
libraryDependencies += "com.github.scopt" % "scopt_2.12" % "3.7.0" // for cmd line argument parsing
libraryDependencies += "io.spray" %% "spray-json" % "1.3.3" // for parsing json and some python output
test in assembly := {} // for skipping tests when assembling a fatjar
logLevel in assembly := Level.Error
mainClass in Compile := None
scalacOptions ++= Seq("-deprecation", "-feature")
// scalacOptions ++= Seq("-optimise") // Scala optimizations standard