-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
44 lines (25 loc) · 1.49 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
37
38
39
40
41
42
43
44
scalaVersion := "2.12.8"
name := "pdg-sdg"
organization := "br.ufpe.cin"
version := "0.4.38"
githubOwner := "spgroup"
githubRepository := "pdg-sdg"
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
resolvers += "SVFA releases" at "https://maven.pkg.github.com/galilasmb/svfa-scala/"
libraryDependencies += "org.typelevel" %% "cats-core" % "1.6.0"
libraryDependencies += "ca.mcgill.sable" % "soot" % "3.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 += "javax.servlet" % "servlet-api" % "2.5" % "provided"
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2"
libraryDependencies += "br.unb.cic" % "svfa-scala_2.12" % "0.5.3"
parallelExecution in Test := false