diff options
author | Federico Igne <git@federicoigne.com> | 2021-10-03 10:22:34 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2021-10-03 10:22:34 +0100 |
commit | 2aa8094df2eb9fde48c8073fbdbb2ebcc42fdbf0 (patch) | |
tree | 769291c614c2113fb4e8fd10a70cbbd32631602f /project | |
parent | 44b8e1c8c724bf7f62f2b567548b941f88a31dc6 (diff) | |
download | RSAComb-2aa8094df2eb9fde48c8073fbdbb2ebcc42fdbf0.tar.gz RSAComb-2aa8094df2eb9fde48c8073fbdbb2ebcc42fdbf0.zip |
Move to os-lib for filesystem operations
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 2742ace..336f052 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala | |||
@@ -6,6 +6,7 @@ object Dependencies { | |||
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 | lazy val ujsonVersion = "1.4.1" |
9 | lazy val oslibVersion = "0.7.8" | ||
9 | 10 | ||
10 | // Libraries | 11 | // Libraries |
11 | val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion | 12 | val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion |
@@ -17,4 +18,5 @@ object Dependencies { | |||
17 | "net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion | 18 | "net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion |
18 | val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion | 19 | val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion |
19 | val ujson = "com.lihaoyi" %% "ujson" % ujsonVersion | 20 | val ujson = "com.lihaoyi" %% "ujson" % ujsonVersion |
21 | val oslib = "com.lihaoyi" %% "os-lib" % oslibVersion | ||
20 | } | 22 | } |