-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
38 lines (23 loc) · 925 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
36
37
38
name := "InSynth"
version := "2.1"
organization := "ch.epfl.lara"
scalaVersion := "2.10.5"
scalacOptions += "-deprecation"
scalacOptions += "-unchecked"
scalacOptions += "-feature"
javacOptions += "-Xlint:unchecked"
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % "test"
libraryDependencies += "junit" % "junit" % "4.8" % "test"
libraryDependencies += "com.novocode" % "junit-interface" % "0.10-M3" % "test"
// logging facilities
libraryDependencies ++= Seq(
"com.typesafe" %% "scalalogging-log4j" % "1.0.1",
"org.apache.logging.log4j" % "log4j-api" % "2.0-beta3",
"org.apache.logging.log4j" % "log4j-core" % "2.0-beta3"
)
//seq(ScctPlugin.instrumentSettings : _*)
//coverageEnabled := true
// default setting excludes packaging main logging config file
packageMainLogConfig := false
// temporary dependency issue
//ivyScala := ivyScala.value map { _.copy(overrideScalaVersion = true) }