-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
25 lines (18 loc) · 891 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
name := "Correlated Calls"
version := "0.1"
organization := "University of Waterloo"
scalaVersion := "2.11.2"
resolvers += "Local Maven Repository" at "file:///"+Path.userHome.absolutePath+"/.m2/repository"
EclipseKeys.createSrc := EclipseCreateSrc.Default + EclipseCreateSrc.Resource
libraryDependencies ++= Seq(
"junit" % "junit" % "4.+",
"com.typesafe" % "config" % "0.5.+",
"com.ibm.wala" % "com.ibm.wala.shrike" % "1.3.8-SNAPSHOT",
"com.ibm.wala" % "com.ibm.wala.util" % "1.3.8-SNAPSHOT",
"com.ibm.wala" % "com.ibm.wala.core" % "1.3.8-SNAPSHOT",
"com.ibm.wala" % "com.ibm.wala.core.tests" % "1.3.8-SNAPSHOT",
"org.scalatest" % "scalatest_2.11" % "2.2.1" % "test",
"org.scalamock" %% "scalamock-scalatest-support" % "3.2" % "test",
"org.mockito" % "mockito-core" % "1.9.5",
"org.scalaz" %% "scalaz-core" % "7.1.0")
org.scalastyle.sbt.ScalastylePlugin.Settings