From 143b82d3bf91410221dee76d1776b7d5cca9d9bd Mon Sep 17 00:00:00 2001 From: Tamino Dauth Date: Wed, 27 Mar 2019 15:33:50 +0100 Subject: [PATCH] Remove assembly #19 It was only necessary for a standalone REST service. --- README.md | 1 - build.sbt | 1 + project/plugins.sbt | 4 +--- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8ec10a9..c37df0b 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,6 @@ Otherwise, the build will fail! ## SBT Commands * `sbt compile` to build the project manually. -* `sbt assembly` to create a standalone JAR which includes all dependencies including the Scala libraries. The standalone JAR is generated as `target/scala-/gui-state-machine-api-assembly-.jar`. * `sbt eclipse` to generate a project for Eclipse. * `sbt test` to execute all unit tests. * `sbt coverage` to generate coverage data. diff --git a/build.sbt b/build.sbt index 4b1fe56..ad03dbd 100644 --- a/build.sbt +++ b/build.sbt @@ -22,6 +22,7 @@ resolvers += "sonatype-snapshots" at "https://oss.sonatype.org/content/repositor // Dependencies to represent states and actions: libraryDependencies += "de.retest" % "surili-commons" % "0.1.0-SNAPSHOT" withSources () withJavadoc () changing () +libraryDependencies += "javax.xml.bind" % "jaxb-api" % "2.3.0" // Dependencies for a graph database: libraryDependencies += "org.neo4j" % "neo4j" % "3.0.1" diff --git a/project/plugins.sbt b/project/plugins.sbt index 2974f79..e9d90a6 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,3 @@ -// to create a standalone JAR file with all dependencies -addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.6") // code formatting addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "1.15") // for signed releases @@ -7,4 +5,4 @@ addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1") addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.2.4") addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.10") addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0") -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1") \ No newline at end of file +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")