aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2021-10-04 18:20:50 +0100
committerFederico Igne <git@federicoigne.com>2021-10-04 18:20:50 +0100
commit0af96f42fc0d272257df83a43b4c6e48e52c1dff (patch)
tree580db98de32623f6e3ba399e475dcef0d6993e66 /project
parent0fdc1f692bb41f9941f6ea4f32ef8c2948a515f7 (diff)
parentc86e7d32420adcc05546efa45b21e0e31d0f6c90 (diff)
downloadRSAComb-0af96f42fc0d272257df83a43b4c6e48e52c1dff.tar.gz
RSAComb-0af96f42fc0d272257df83a43b4c6e48e52c1dff.zip
Merge branch 'upperbound' into develop
Diffstat (limited to 'project')
-rw-r--r--project/Dependencies.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index a185615..336f052 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -5,6 +5,8 @@ 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"
9 lazy val oslibVersion = "0.7.8"
8 10
9 // Libraries 11 // Libraries
10 val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion 12 val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion
@@ -15,4 +17,6 @@ object Dependencies {
15 val apibinding = 17 val apibinding =
16 "net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion 18 "net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion
17 val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion 19 val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion
20 val ujson = "com.lihaoyi" %% "ujson" % ujsonVersion
21 val oslib = "com.lihaoyi" %% "os-lib" % oslibVersion
18} 22}