-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsonatype.sbt
32 lines (28 loc) · 918 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
import sbt.Developer
// Your profile name of the sonatype account. The default is the same with the organization value
sonatypeProfileName := "in.norbor"
// To sync with Maven central, you need to supply the following information:
publishMavenStyle := true
// License of your choice
licenses := Seq("MIT" -> url("https://raw.githubusercontent.com/nuboat/yoda-orm/master/LICENSE"))
homepage := Some(url("https://(your project url)"))
scmInfo := Some(
ScmInfo(
url("https://github.com/nuboat/yoda-bahttext"),
"scm:git@github.com:nuboat/yoda-bahttext.git"
)
)
developers := List(
Developer(id = "nuboat"
, name = "Peerapat Asoktummarungsri"
, email = "nuboat@gmail.com"
, url = url("https://github.com/nuboat"))
, Developer(id = "up1"
, name = "Somkiat"
, email = ""
, url = null)
, Developer(id = "Thammachart"
, name = "Thammachart"
, email = ""
, url = null)
)