forked from paoloboni/binance-scala-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonatype.sbt
33 lines (29 loc) · 855 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
33
import java.time.Year
lazy val contributors = Seq(
"paoloboni" -> "Paolo Boni"
)
pgpSecretRing := pgpPublicRing.value
publishTo := sonatypePublishTo.value
sonatypeProfileName := "io.github.paoloboni"
publishMavenStyle := true
pomExtra := {
<developers>
{
for ((username, name) <- contributors)
yield <developer>
<id>{username}</id>
<name>{name}</name>
<url>http://github.com/{username}</url>
</developer>
}
</developers>
}
scmInfo := Some(
ScmInfo(
url("https://github.com/paoloboni/binance-scala-client"),
"scm:[email protected]:paoloboni/binance-scala-client.git"
)
)
headerLicense := Some(HeaderLicense.MIT(Year.now().getValue.toString, "Paolo Boni"))
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT"))
homepage := Some(url("https://github.com/paoloboni/binance-scala-client"))