This repository was archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
37 lines (30 loc) · 1.4 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
organization := "vision.id"
name := "tessella"
version := "0.3.1"
scalaVersion := "2.12.8"
resolvers ++= Seq(
"gephi-thirdparty" at "https://raw.github.com/gephi/gephi/mvn-thirdparty-repo/"
)
libraryDependencies ++= Seq(
"org.scala-graph" %% "graph-core" % "1.12.5",
"org.scala-graph" %% "graph-constrained" % "1.12.7",
"org.scala-lang.modules" %% "scala-xml" % "1.1.1",
"com.lihaoyi" %% "os-lib" % "0.2.8",
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
"org.scalacheck" %% "scalacheck" % "1.14.0" % Test,
"org.gephi" % "gephi-toolkit" % "0.9.2" % Test classifier "all",
"vision.id" %% "graphgephi" % "0.1.2" % Test,
"com.storm-enroute" %% "scalameter" % "0.8.2",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2"
)
dependencyOverrides ++= Seq(
"org.netbeans.modules" % "org-netbeans-core" % "RELEASE90" % Test,
"org.netbeans.modules" % "org-netbeans-core-startup-base" % "RELEASE90" % Test,
"org.netbeans.modules" % "org-netbeans-modules-masterfs" % "RELEASE90" % Test,
"org.netbeans.api" % "org-openide-util-lookup" % "RELEASE90" % Test,
)
testFrameworks += new TestFramework("org.scalameter.ScalaMeterFramework")
parallelExecution in Test := false
Compile / unmanagedSourceDirectories += baseDirectory.value / "jvm" / "src"
Test / unmanagedSourceDirectories += baseDirectory.value / "jvm" / "test" / "src"