blob: 39e8e2ea6246368f61a3dfb497e6143ff24a2e6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
}
|