blob: a1856158db1d30f28b417b1cb14b5e291a40f305 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import sbt._
object Dependencies {
// Versions
lazy val scalatestVersion = "3.2.3"
lazy val owlapiVersion = "5.1.17"
lazy val scalagraphVersion = "1.13.2"
// Libraries
val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion
val scalatestFlatSpec =
"org.scalatest" %% "scalatest-flatspec" % scalatestVersion
val scalatestShouldMatchers =
"org.scalatest" %% "scalatest-shouldmatchers" % scalatestVersion
val apibinding =
"net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion
val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion
}
|