-
Notifications
You must be signed in to change notification settings - Fork 29
/
build.sbt
59 lines (50 loc) · 1.71 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name := "slack-scala-bot-core"
version := "1.0.0"
scalaVersion := "2.11.6"
organization := "io.scalac"
libraryDependencies ++= {
val akkaVersion = "2.5.23"
val akkaHttpVersion = "10.1.9"
Seq(
"org.mockito" % "mockito-core" % "1.10.19",
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
"io.spray" %% "spray-json" % "1.3.6",
"io.spray" %% "spray-client" % "1.3.4",
"io.spray" %% "spray-can" % "1.3.2",
"joda-time" % "joda-time" % "2.7",
"org.joda" % "joda-convert" % "1.7",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"log4j" % "log4j" % "1.2.17",
"org.slf4j" % "slf4j-api" % "1.7.5",
"org.slf4j" % "slf4j-log4j12" % "1.7.5",
"com.typesafe.slick" %% "slick" % "2.1.0",
"com.h2database" % "h2" % "1.4.186"
)
}
resolvers += "spray repo" at "https://repo.spray.io"
publishMavenStyle := true
publishTo := Some(Resolver.file("file", new File("../mvn-repo")))
publishArtifact in Test := false
pomExtra := (
<url>http://www.scalac.io/</url>
<licenses>
<license>
<name>MIT</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:ScalaConsultants/scala-slack-bot-core.git</url>
<connection>scm:git:git@github.com:ScalaConsultants/scala-slack-bot-core</connection>
</scm>
<developers>
<developer>
<id>scalac</id>
<name>ScalaConsultants</name>
</developer>
</developers>)