-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
26 lines (18 loc) · 937 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import com.typesafe.sbt.SbtNativePackager.autoImport.NativePackagerHelper._
name := "UniHubLab"
version := "0.1"
scalaVersion := "2.12.7"
libraryDependencies += "io.vertx" %% "vertx-lang-scala" % "3.5.3"
libraryDependencies += "io.vertx" %% "vertx-mongo-client-scala" % "3.5.3"
libraryDependencies += "io.vertx" %% "vertx-web-scala" % "3.5.3"
libraryDependencies += "io.vertx" %% "vertx-tcp-eventbus-bridge-scala" % "3.5.3"
libraryDependencies += "io.vertx" %% "vertx-web-templ-handlebars-scala" % "3.5.3"
libraryDependencies += "joda-time" % "joda-time" % "2.9.9"
resolvers += Resolver.bintrayRepo("julien-lafont", "maven")
libraryDependencies ++= Seq(
"io.protoless" %% "protoless-core" % "0.0.7",
"io.protoless" %% "protoless-generic" % "0.0.7"
)
mappings in Universal ++= directory(baseDirectory.value / "templates")
mappings in Universal ++= directory(baseDirectory.value / "webroot")
enablePlugins(JavaAppPackaging)