-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
45 lines (34 loc) · 1.09 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
import SonatypeKeys._
sonatypeSettings
name := "social-api-scala"
organization := "com.github.kfang"
scalaVersion := "2.11.5"
crossScalaVersions := Seq("2.10.4", "2.11.5")
version := "0.6.0-SNAPSHOT"
scalacOptions ++= Seq("-feature", "-deprecation")
resolvers += "spray" at "http://repo.spray.io/"
libraryDependencies ++= Seq(
"org.scalaj" %% "scalaj-http" % "1.1.4",
"io.spray" %% "spray-json" % "1.3.1"
)
pomExtra := {
<url>https://github.com/kfang/social-api-scala</url>
<licenses>
<license>
<name>MIT</name>
<url>http://opensource.org/licenses/MIT</url>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:kfang/social-api-scala.git</connection>
<developerConnection>scm:git:[email protected]:kfang/social-api-scala.git</developerConnection>
<url>[email protected]:kfang/social-api-scala.git</url>
</scm>
<developers>
<developer>
<id>kfang</id>
<name>kfang</name>
<url>https://github.com/kfang</url>
</developer>
</developers>
}