-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathsonatype.sbt
32 lines (26 loc) · 997 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
29
30
31
32
// Your profile name of the sonatype account. The default is the same with the organization value
sonatypeProfileName := "io.github.tailhq"
// To sync with Maven central, you need to supply the following information:
publishMavenStyle := true
// License of your choice
licenses := Seq("APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
// Where is the source code hosted
//import xerial.sbt.Sonatype._
//sonatypeProjectHosting := Some(GitHubHosting("username", "projectName", "user@example.com"))
// or
//sonatypeProjectHosting := Some(GitLabHosting("username", "projectName", "user@example.com"))
// or if you want to set these fields manually
homepage := Some(url("https://tailhq.github.io/DynaML/"))
scmInfo := Some(
ScmInfo(
url("/~https://github.com/tailhq/DynaML"),
"git@github.com:tailhq/DynaML.git"
)
)
developers := List(
Developer(
id="tailhq",
name="Mandar Chandorkar",
email="tailhq@gmail.com",
url=url("http://mandar2812.github.io/"))
)