-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tswrdb can now have a fatjar built with the assembly task
Added sbt-assembly plugin Added assembly instructions
- Loading branch information
joakibj
committed
Nov 12, 2013
1 parent
e0e63c0
commit 1c0b44b
Showing
2 changed files
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
|
||
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.5.1") | ||
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.5.1") | ||
|
||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.9.2") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import AssemblyKeys._ | ||
|
||
assemblySettings | ||
|
||
jarName in assembly <<= (version) map { (version) => "tswrdb-" + version + ".jar" } | ||
|
||
mainClass in assembly := Some("com.joakibj.tswrdb.TswRdb") |