-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsonatype.sbt
35 lines (27 loc) · 1.01 KB
/
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
29
30
31
32
33
34
35
sonatypeProfileName := "org.querki"
publishMavenStyle := true
licenses += ("MIT License", url("http://www.opensource.org/licenses/mit-license.php"))
import xerial.sbt.Sonatype._
sonatypeProjectHosting := Some(GitHubHosting("jducoeur", "jsext", "justin@querki.net"))
homepage := Some(url("http://www.querki.net/"))
scmInfo := Some(
ScmInfo(
url("https://github.com/jducoeur/jsext"),
"scm:git:git@github.com/jducoeur/jsext.git",
Some("scm:git:git@github.com/jducoeur/jsext.git")))
// There doesn't seem to be a way to specify contributors properly in sbt-sonatype:
pomExtra := (
<contributors>
<contributor>
<name>Jasper Moeys</name>
<url>https://github.com/Jasper-M/</url>
</contributor>
<contributor>
<name>Stefan Larsson</name>
<url>https://github.com/lastsys/</url>
</contributor>
</contributors>
)
developers := List(
Developer(id = "jducoeur", name = "Mark Waks", email = "justin@querki.net", url = new URL("https://github.com/jducoeur/"))
)