diff options
author | Federico Igne <git@federicoigne.com> | 2021-09-29 15:16:25 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2021-09-29 16:41:57 +0100 |
commit | b1799a0af7bd243fb24bff66682f6f848557c27d (patch) | |
tree | 42aecf4aa3e5c6c94993a1afcb94729c664d6b03 /project | |
parent | 0f52fea098088d8e90410b97213f60c52407f8ff (diff) | |
download | RSAComb-b1799a0af7bd243fb24bff66682f6f848557c27d.tar.gz RSAComb-b1799a0af7bd243fb24bff66682f6f848557c27d.zip |
Add JSON format for CQ answers
Diffstat (limited to 'project')
-rw-r--r-- | project/Dependencies.scala | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/project/Dependencies.scala b/project/Dependencies.scala index a185615..2742ace 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala | |||
@@ -5,6 +5,7 @@ object Dependencies { | |||
5 | lazy val scalatestVersion = "3.2.3" | 5 | lazy val scalatestVersion = "3.2.3" |
6 | lazy val owlapiVersion = "5.1.17" | 6 | lazy val owlapiVersion = "5.1.17" |
7 | lazy val scalagraphVersion = "1.13.2" | 7 | lazy val scalagraphVersion = "1.13.2" |
8 | lazy val ujsonVersion = "1.4.1" | ||
8 | 9 | ||
9 | // Libraries | 10 | // Libraries |
10 | val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion | 11 | val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion |
@@ -15,4 +16,5 @@ object Dependencies { | |||
15 | val apibinding = | 16 | val apibinding = |
16 | "net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion | 17 | "net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion |
17 | val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion | 18 | val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion |
19 | val ujson = "com.lihaoyi" %% "ujson" % ujsonVersion | ||
18 | } | 20 | } |