-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
34 lines (20 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
scalaVersion := "2.12.8"
name := "control-dependence-analysis"
organization := "br.ufpe.cin"
version := "0.1.0-SNAPSHOT"
githubOwner := "spgroup"
githubRepository := "control-dependence-analysis"
githubTokenSource := TokenSource.GitConfig("github.token") || TokenSource.Environment("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 += "ca.mcgill.sable" % "soot" % "3.3.1"
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"