-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
31 lines (21 loc) · 840 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
27
28
29
30
31
import sbt.Keys._
import NativePackagerKeys._
import com.typesafe.sbt.SbtNativePackager._
name := """physalis"""
version := "0.2.1"
lazy val root = (project in file(".")).enablePlugins(play.PlayScala)
scalaVersion := "2.11.5"
libraryDependencies ++= Seq(
"ws.securesocial" %% "securesocial" % "3.0-M3",
"com.github.seratch" %% "awscala" % "0.5.+",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"org.scalatestplus" %% "play" % "1.2.0" % "test"
)
resolvers ++= Seq(
"Apache" at "http://repo1.maven.org/maven2/",
"jBCrypt Repository" at "http://repo1.maven.org/maven2/org/",
"Sonatype OSS Snasphots" at "http://oss.sonatype.org/content/repositories/snapshots"
)
maintainer in Docker := "Daniel Beck <[email protected]>"
dockerExposedPorts in Docker := Seq(9000, 9443)
dockerBaseImage := "java:8"