-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
35 lines (27 loc) · 1002 Bytes
/
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
33
34
35
name := "jp_annotation"
organization := "org.els"
version := "1.0"
scalaVersion := "2.12.6"
cancelable in Global := true
val scalatest = "3.0.5"
val akkaVersion = "2.5.12"
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % "1.1.0" withSources () withJavadoc (),
"com.typesafe.akka" %% "akka-stream" % akkaVersion withSources () withJavadoc (),
"com.typesafe" % "config" % "1.3.3" withSources () withJavadoc (),
"ch.qos.logback" % "logback-classic" % "1.2.3" withSources () withJavadoc (),
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.0",
("org.scalatest" %% "scalatest" % scalatest % "test")
.withSources()
.withJavadoc(),
("org.scalactic" %% "scalactic" % scalatest).withSources().withJavadoc()
)
unmanagedBase := baseDirectory.value / "lib"
scalacOptions ++= Seq("-unchecked",
"-deprecation",
"-feature",
"-language:implicitConversions")
fork in run := true
javaOptions in run ++= Seq(
"-Xmx10G", "-Xms10g", "-XX:MaxPermSize=10g"
)