forked from SemanticBeeng/scalaad
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sonatype.sbt
32 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
// Your profile name of the sonatype account. The default is the same with the organization value
sonatypeProfileName := "io.github.transcendent-ai-labs"
// 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", "[email protected]"))
// or
//sonatypeProjectHosting := Some(GitLabHosting("username", "projectName", "[email protected]"))
// or if you want to set these fields manually
homepage := Some(url("https://transcendent-ai-labs.github.io/autograd/"))
scmInfo := Some(
ScmInfo(
url("https://github.com/transcendent-ai-labs/autograd"),
"[email protected]:transcendent-ai-labs/autograd.git"
)
)
developers := List(
Developer(
id="mandar2812",
name="Mandar Chandorkar",
email="[email protected]",
url=url("http://mandar2812.github.io/"))
)