-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
41 lines (33 loc) · 975 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
32
33
34
35
36
37
38
39
40
41
import SonatypeKeys._
name := "mongo4s"
organization := "com.github.kfang"
version := "0.0.1-SNAPSHOT"
scalaVersion := "2.11.6"
crossScalaVersions := Seq("2.10.5", "2.11.6")
libraryDependencies ++= Seq(
"org.reactivemongo" %% "reactivemongo" % "0.10.5.0.akka23",
"joda-time" % "joda-time" % "2.3",
"org.joda" % "joda-convert" % "1.5"
)
xerial.sbt.Sonatype.sonatypeSettings
pomExtra := {
<url>https://github.com/kfang/mongo4s</url>
<licenses>
<license>
<name>MIT</name>
<url>http://opensource.org/licenses/MIT</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/kfang/mongo4s</connection>
<developerConnection>scm:git:[email protected]:kfang/mongo4s</developerConnection>
<url>github.com/kfang/mongo4s</url>
</scm>
<developers>
<developer>
<id>kfang</id>
<name>Kevin Fang</name>
<url>https://github.com/kfang</url>
</developer>
</developers>
}