diff options
author | Federico Igne <federico.igne@cs.ox.ac.uk> | 2021-01-08 17:50:57 +0000 |
---|---|---|
committer | Federico Igne <federico.igne@cs.ox.ac.uk> | 2021-01-08 17:50:57 +0000 |
commit | 35f41c0529f65c4b3ee941e087d497a931d17d9e (patch) | |
tree | ab950ccc9a3457a4c60b0d4941dd080301cca13f /project | |
parent | b0e195336a950095a733f32bf07754254ed08a37 (diff) | |
download | RSAComb-35f41c0529f65c4b3ee941e087d497a931d17d9e.tar.gz RSAComb-35f41c0529f65c4b3ee941e087d497a931d17d9e.zip |
Add sbt plugin to create jar with dependences
Also update README.md with info on how to compile and run the program.
Diffstat (limited to 'project')
-rw-r--r-- | project/Dependencies.scala | 9 | ||||
-rw-r--r-- | project/plugins.sbt | 1 |
2 files changed, 7 insertions, 3 deletions
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 { | |||
8 | 8 | ||
9 | // Libraries | 9 | // Libraries |
10 | val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion | 10 | val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion |
11 | val scalatestFlatSpec = "org.scalatest" %% "scalatest-flatspec" % scalatestVersion | 11 | val scalatestFlatSpec = |
12 | val scalatestShouldMatchers = "org.scalatest" %% "scalatest-shouldmatchers" % scalatestVersion | 12 | "org.scalatest" %% "scalatest-flatspec" % scalatestVersion |
13 | val apibinding = "net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion | 13 | val scalatestShouldMatchers = |
14 | "org.scalatest" %% "scalatest-shouldmatchers" % scalatestVersion | ||
15 | val apibinding = | ||
16 | "net.sourceforge.owlapi" % "owlapi-apibinding" % owlapiVersion | ||
14 | val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion | 17 | val graphcore = "org.scala-graph" %% "graph-core" % scalagraphVersion |
15 | } | 18 | } |
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") | |||