aboutsummaryrefslogtreecommitdiff
path: root/project/Dependencies.scala
blob: 2742ace2a4f584da55927915661070e1f1a14c8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import sbt._

object Dependencies {
  // Versions
  lazy val scalatestVersion = "3.2.3"
  lazy val owlapiVersion = "5.1.17"
  lazy val scalagraphVersion = "1.13.2"
  lazy val ujsonVersion = "1.4.1"

  // 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
  val ujson = "com.lihaoyi" %% "ujson" % ujsonVersion
}