Last active
August 29, 2015 14:07
-
-
Save Petesta/a77963dc30b6ae399edd to your computer and use it in GitHub Desktop.
Deploying Java Based Application
This file contains hidden or 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
import com.typesafe.sbt.SbtStartScript | |
import AssemblyKeys._ | |
assemblySettings | |
seq(SbtStartScript.startScriptForClassesSettings: _*) | |
SbtStartScript.stage in Compile := Unit | |
libraryDependencies ++= Seq( | |
"org.scalaz" %% "scalaz-core" % "7.0.4", | |
"org.scalaz" %% "scalaz-effect" % "7.0.4", | |
"org.scalaz" %% "scalaz-concurrent" % "7.0.4", | |
"org.scalaz.stream" %% "scalaz-stream" % "0.2-SNAPSHOT", | |
"io.argonaut" %% "argonaut" % "6.0", | |
"io.argonaut" %% "argonaut-unfiltered" % "6.0", | |
"net.databinder.dispatch" %% "dispatch-core" % "0.11.0", | |
"net.databinder" %% "unfiltered" % "0.7.0", | |
"net.databinder" %% "unfiltered-filter" % "0.7.0", | |
"net.databinder" %% "unfiltered-jetty" % "0.7.0", | |
"org.clapper" %% "avsl" % "1.0.1", | |
"com.github.nscala-time" %% "nscala-time" % "0.6.0" | |
) | |
resolvers ++= Seq(Resolver.sonatypeRepo("snapshots"), Resolver.sonatypeRepo("releases")) | |
mergeStrategy in assembly <<= (mergeStrategy in assembly) { (old) => | |
{ | |
case PathList(ps @ _*) if ps.last endsWith ".html" => MergeStrategy.first | |
case x => old(x) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment