forked from timeoutdigital/docless
-
Notifications
You must be signed in to change notification settings - Fork 2
/
sonatype.sbt
26 lines (19 loc) · 881 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
sonatypeProfileName := "com.dividat"
credentials += Credentials("Sonatype Nexus Repository Manager",
"oss.sonatype.org",
sys.env.get("SONATYPE_USERNAME").getOrElse("dividat"),
sys.env.get("SONATYPE_PASSWORD").getOrElse("")) // ignored by non-publish tasks
publishMavenStyle := true
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
homepage := Some(url("https://github.com/dividat/docless"))
scmInfo := Some(
ScmInfo(
url("https://github.com/dividat/docless"),
"scm:[email protected]:dividat/docless.git"
)
)
developers := List(
Developer(id="afiore", name="Andrea Fiore", email="", url=url("https://github.com/afiore")),
Developer(id="etaque", name="Emilien Taque", email="", url=url("https://github.com/etaque")),
Developer(id="guyonvarch", name="Joris Guyonvarch", email="", url=url("https://github.com/guyonvarch"))
)