-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsonatype.sbt
24 lines (20 loc) · 878 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
// Your profile name of the sonatype account. The default is the same with the organization value
sonatypeProfileName := "ly.jamie"
// To sync with Maven central, you need to supply the following information:
publishMavenStyle := true
// License of your choice
licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))
// Where is the source code hosted
import xerial.sbt.Sonatype._
sonatypeProjectHosting := Some(GitHubHosting("jamiely", "sbt-slack-notify", "[email protected]"))
// or if you want to set these fields manually
homepage := Some(url("https://github.com/jamiely/sbt-slack-notify"))
scmInfo := Some(
ScmInfo(
url("https://github.com/jamiely/sbt-slack-notify"),
"scm:[email protected]:jamiely/sbt-slack-notify.git"
)
)
developers := List(
Developer(id="jamiely", name="Jamie Ly", email="[email protected]", url=url("http://jamie.ly"))
)