From b4f19557e648d96fc1a87677ea3c02143a525cbd Mon Sep 17 00:00:00 2001 From: Stefano Germano Date: Mon, 19 Oct 2020 16:15:25 +0200 Subject: 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). --- project/Dependencies.scala | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 project/Dependencies.scala (limited to 'project') 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 @@ +import sbt._ + +object Dependencies { + // Versions + lazy val scalatestVersion = "3.2.2" + lazy val owlapiVersion = "5.1.16" + lazy val scalagraphVersion = "1.13.2" + + // 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 +} -- cgit v1.2.3