-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
51 lines (39 loc) · 1.43 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
name := """sendgrid-scala"""
organization := "org.miszkiewicz"
version := "0.2-SNAPSHOT"
scalaVersion := "2.11.8"
val httpcomponentsVersion = "4.5.2"
libraryDependencies += "org.apache.httpcomponents" % "httpclient" % httpcomponentsVersion
libraryDependencies += "org.apache.httpcomponents" % "httpmime" % httpcomponentsVersion
libraryDependencies += "com.typesafe.akka" %% "akka-http-spray-json-experimental" % "2.4.2"
libraryDependencies += "org.specs2" %% "specs2-core" % "3.7.2" % Test
scalacOptions in Test ++= Seq("-Yrangepos")
publishMavenStyle := true
pomIncludeRepository := { _ => false }
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
pomExtra := (
<url>https://github.com/eigengo/sbt-raml-plugin</url>
<licenses>
<license>
<name>The MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:dmiszkiewicz/sendgrid-scala.git</url>
<connection>scm:git:git@github.com:dmiszkiewicz/sendgrid-scala.git</connection>
</scm>
<developers>
<developer>
<id>dmiszkiewicz</id>
<name>Dominik Miszkiewicz</name>
<url>http://www.miszkiewicz.org/</url>
</developer>
</developers>)