diff options
author | Stefano Germano <stefanogermano0@gmail.com> | 2020-10-19 16:15:25 +0200 |
---|---|---|
committer | Stefano Germano <stefanogermano0@gmail.com> | 2020-10-19 16:15:25 +0200 |
commit | b4f19557e648d96fc1a87677ea3c02143a525cbd (patch) | |
tree | b167adbd9605e8f3b11e0bc3271be88b1cf0d180 /project/Dependencies.scala | |
parent | 014fda84a13620b64597f4bbd6d27afcb929e0f4 (diff) | |
download | RSAComb-b4f19557e648d96fc1a87677ea3c02143a525cbd.tar.gz RSAComb-b4f19557e648d96fc1a87677ea3c02143a525cbd.zip |
More details in build.sbt and updated dependencies
While updating the dependencies, I noticed that v3.2 of scalatest is very different from v3.1 (https://www.scalatest.org/release_notes/3.2.0). Therefore, I also needed to update the test files.
But, there is a "too many arguments" error that needs to be solved (I do not know why it was working before).
Diffstat (limited to 'project/Dependencies.scala')
-rw-r--r-- | project/Dependencies.scala | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/project/Dependencies.scala b/project/Dependencies.scala new file mode 100644 index 0000000..1cafe11 --- /dev/null +++ b/project/Dependencies.scala | |||
@@ -0,0 +1,15 @@ | |||
1 | import sbt._ | ||
2 | |||
3 | object Dependencies { | ||
4 | // Versions | ||
5 | lazy val scalatestVersion = "3.2.2" | ||
6 | lazy val owlapiVersion = "5.1.16" | ||
7 | lazy val scalagraphVersion = "1.13.2" | ||
8 | |||
9 | // Libraries | ||
10 | val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion | ||
11 | val scalatestFlatSpec = "org.scalatest" %% "scalatest-flatspec" % scalatestVersion | ||
12 | val scalatestShouldMatchers = "org.scalatest" %% "scalatest-shouldmatchers" % scalatestVersion | ||
13 | val apibinding = "net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion | ||
14 | val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion | ||
15 | } | ||