Skip to content

Commit

Permalink
add sbt-assembly
Browse files Browse the repository at this point in the history
  • Loading branch information
fluency03 committed Apr 29, 2018
1 parent 8c983df commit 7dfeddb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ REST API service is built on the open source projects [akka](https://github.com/

API Documentation on Postman: [blockchain-in-scala](https://documenter.getpostman.com/view/1231202/blockchain-in-scala/RVu8iTUP)

Start the service, run the following Class:
Start the service, run this Class:

```
com.fluency03.blockchain.api.Server
Expand Down
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ organization := "com.fluency03"

name := "blockchain-in-scala"

version := "0.0.2"
version := "0.0.6"

scalaVersion := "2.12.0"

Expand Down Expand Up @@ -43,3 +43,6 @@ libraryDependencies ++= {
"org.bouncycastle" % "bcprov-jdk15on" % "1.59"
)
} ++ httpDependencies ++ testDependencies


mainClass in assembly := Some("com.fluency03.blockchain.api.Server")
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
addSbtPlugin("com.artima.supersafe" %% "sbtplugin" % "1.1.3")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.2.4")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.6")

0 comments on commit 7dfeddb

Please sign in to comment.