aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-10-27 18:45:06 -0700
committerJakob Odersky <jakob@odersky.com>2018-10-27 18:45:06 -0700
commitde095d377859887352c7380e52ea89bcabf662a0 (patch)
tree6cee6eb17c1977b85e01078e926499b33854047d /build.sbt
downloadbyspel-de095d377859887352c7380e52ea89bcabf662a0.tar.gz
byspel-de095d377859887352c7380e52ea89bcabf662a0.tar.bz2
byspel-de095d377859887352c7380e52ea89bcabf662a0.zip
Initial commit
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt21
1 files changed, 21 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..804417a
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,21 @@
+lazy val byspel = project
+ .in(file("."))
+ .settings(
+ libraryDependencies ++= Seq(
+ "com.lihaoyi" %% "scalatags" % "0.6.7",
+ "com.typesafe.akka" %% "akka-http" % "10.1.5",
+ "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.5",
+ "com.typesafe.akka" %% "akka-stream" % "2.5.17",
+ "de.mkammerer" % "argon2-jvm" % "2.5",
+ "tech.sparse" %% "toml-scala" % "0.1.1"
+ )
+ )
+
+lazy val dist = taskKey[File](
+ "Generate single, distributable package under a well-known directory."
+)
+dist := {
+ val out = target.value / "dist.jar"
+ IO.copyFile(assembly.value, out)
+ out
+}