forked from scamandrill/scamandrill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
68 lines (52 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
name := "scamandrill"
organization := "io.github.scamandrill"
bintrayOrganization := Some("scamandrill")
bintrayRepository := "scamandrill"
bintrayReleaseOnPublish in ThisBuild := false
licenses += ("Apache-2.0", url("https://spdx.org/licenses/Apache-2.0"))
description := "Scala client for Mandrill api"
scalaVersion := "2.11.7"
crossScalaVersions := Seq("2.10.5", "2.11.7")
scalacOptions := Seq(
"-feature", "-unchecked", "-deprecation", "-encoding", "utf8"
)
resolvers ++= Seq("spray repo" at "http://repo.spray.io/")
parallelExecution in Test := true
libraryDependencies ++= {
val akkaV = "2.4.2"
Seq(
"io.spray" %% "spray-json" % "1.3.2",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-http-experimental" % "2.4.2",
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % "2.4.2",
"com.typesafe" % "config" % "1.3.0",
"org.slf4j" % "slf4j-api" % "1.7.14"
) ++ Seq(
"org.specs2" %% "specs2" % "2.3.13" % "test",
"org.scalatest" %% "scalatest" % "2.1.6" % "test->*",
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test"
)
}
publishArtifact in Test := false
publishMavenStyle := true
pomIncludeRepository := { _ => false }
pomExtra := (
<url>http://github.com/scamandrill/scamandrill</url>
<scm>
<connection>scm:git:github.com/scamandrill/scamandrill.git</connection>
<developerConnection>scm:git:[email protected]:scamandrill/scamandrill.git</developerConnection>
<url>github.com/scamandrill/scamandrill</url>
</scm>
<developers>
<developer>
<id>dzsessona</id>
<name>Diego Zambelli Sessona</name>
<url>https://www.linkedin.com/in/diegozambellisessona</url>
</developer>
<developer>
<id>graingert</id>
<name>Thomas Grainger</name>
<url>https://graingert.co.uk/</url>
</developer>
</developers>
)