-
Notifications
You must be signed in to change notification settings - Fork 17
/
sonatype.sbt
34 lines (26 loc) · 1.04 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
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", "jquery-facade", "[email protected]"))
homepage := Some(url("http://www.querki.net/"))
scmInfo := Some(ScmInfo(
url("https://github.com/jducoeur/jquery-facade"),
"scm:git:[email protected]:jducoeur/jquery-facade.git",
Some("scm:git:[email protected]:jducoeur/jquery-facade.git")))
// Folks who have contributed are encouraged to add entries here:
//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 = "[email protected]", url = new URL("https://github.com/jducoeur/"))
)