forked from scullxbones/akka-persistence-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonatype.sbt
28 lines (25 loc) · 979 Bytes
/
sonatype.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
publishMavenStyle := true
licenses := Seq("APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
import xerial.sbt.Sonatype._
sonatypeProjectHosting := Some(GitHubHosting("scullxbones", "akka-persistence-mongo", "[email protected]"))
pomExtra in Global := {
<url>https://github.com/scullxbones/akka-persistence-mongo</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/scullxbones/akka-persistence-mongo.git</connection>
<developerConnection>scm:git:[email protected]:scullxbones/akka-persistence-mongo.git</developerConnection>
<url>github.com/scullxbones/akka-persistence-mongo.git</url>
</scm>
<developers>
<developer>
<id>scullxbones</id>
<name>Brian Scully</name>
<url>https://github.com/scullxbones/</url>
</developer>
</developers>
}