aboutsummaryrefslogtreecommitdiff
path: root/project/Dependencies.scala
diff options
context:
space:
mode:
Diffstat (limited to 'project/Dependencies.scala')
-rw-r--r--project/Dependencies.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
new file mode 100644
index 0000000..1cafe11
--- /dev/null
+++ b/project/Dependencies.scala
@@ -0,0 +1,15 @@
1import sbt._
2
3object Dependencies {
4 // Versions
5 lazy val scalatestVersion = "3.2.2"
6 lazy val owlapiVersion = "5.1.16"
7 lazy val scalagraphVersion = "1.13.2"
8
9 // Libraries
10 val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion
11 val scalatestFlatSpec = "org.scalatest" %% "scalatest-flatspec" % scalatestVersion
12 val scalatestShouldMatchers = "org.scalatest" %% "scalatest-shouldmatchers" % scalatestVersion
13 val apibinding = "net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion
14 val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion
15}