forked from feathr-ai/feathr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sonatype.sbt
25 lines (20 loc) · 889 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
publishTo := sonatypePublishToBundle.value
// For all Sonatype accounts created on or after February 2021
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
// Your profile name of the sonatype account. The default is the same with the organization value
sonatypeProfileName := "com.linkedin.feathr"
// To sync with Maven central, you need to supply the following information:
publishMavenStyle := true
// Open-source license of your choice
licenses := Seq("APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
// Project metadata
homepage := Some(url("https://github.com/linkedin/feathr"))
scmInfo := Some(
ScmInfo(
url("https://github.com/linkedin/feathr"),
"scm:[email protected]:linkedin/feathr.git"
)
)
developers := List(
Developer(id="feathr_dev", name="Feathr Dev", email="[email protected]", url=url("https://github.com/linkedin/feathr"))
)