From 35f41c0529f65c4b3ee941e087d497a931d17d9e Mon Sep 17 00:00:00 2001 From: Federico Igne Date: Fri, 8 Jan 2021 17:50:57 +0000 Subject: Add sbt plugin to create jar with dependences Also update README.md with info on how to compile and run the program. --- project/Dependencies.scala | 9 ++++++--- project/plugins.sbt | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 project/plugins.sbt (limited to 'project') diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 39e8e2e..a185615 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -8,8 +8,11 @@ object Dependencies { // 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 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 } diff --git a/project/plugins.sbt b/project/plugins.sbt new file mode 100644 index 0000000..72477a2 --- /dev/null +++ b/project/plugins.sbt @@ -0,0 +1 @@ +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0") -- cgit v1.2.3