forked from galilasmb/svfa-scala
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
37 lines (21 loc) · 1.23 KB
/
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
scalaVersion := "2.12.8"
name := "svfa-scala"
organization := "br.unb.cic"
version := "0.5.10"
githubOwner := "galilasmb"
githubRepository := "svfa-scala"
githubTokenSource := TokenSource.GitConfig("github.token")
parallelExecution in Test := false
resolvers += "soot snapshots" at "https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-snapshot/"
resolvers += "soot releases" at "https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-release/"
resolvers += "Local maven repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository"
resolvers += Classpaths.typesafeReleases
libraryDependencies += "org.typelevel" %% "cats-core" % "1.6.0"
libraryDependencies += "org.soot-oss" % "soot" % "4.3.0"
libraryDependencies += "com.google.guava" % "guava" % "27.1-jre"
libraryDependencies += "org.scala-graph" %% "graph-core" % "1.13.0"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.2"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % "test"
libraryDependencies += "javax.servlet" % "javax.servlet-api" % "3.0.1" % "provided"
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2"