-
Notifications
You must be signed in to change notification settings - Fork 28
/
sonatype.sbt
32 lines (31 loc) · 1.17 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 := "ldaniels528"
// To sync with Maven central, you need to supply the following information:
pomExtra in Global := {
<url>https://github.com/ldaniels528/scalajs-nodejs</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/ldaniels528/scalajs-nodejs.git</connection>
<developerConnection>scm:git:[email protected]:ldaniels528/scalajs-nodejs.git</developerConnection>
<url>github.com/ldaniels528/scalajs-nodejs.git</url>
</scm>
<developers>
<developer>
<id>ldaniels528</id>
<name>Lawrence Daniels</name>
<email>[email protected]</email>
<organization>com.github.ldaniels528</organization>
<organizationUrl>https://github.com/ldaniels528</organizationUrl>
<roles>
<role>Project-Administrator</role>
<role>Developer</role>
</roles>
<timezone>+7</timezone>
</developer>
</developers>
}