Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Commit

Permalink
Remove assembly #19
Browse files Browse the repository at this point in the history
It was only necessary for a standalone REST service.
  • Loading branch information
tdauth committed Apr 10, 2019
1 parent 8208a91 commit 10469b8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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-<scalaversion>/gui-state-machine-api-assembly-<version>.jar`.
* `sbt eclipse` to generate a project for Eclipse.
* `sbt test` to execute all unit tests.
* `sbt coverage` to generate coverage data.
Expand Down
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 1 addition & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
// 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
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")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")

0 comments on commit 10469b8

Please sign in to comment.