-
Notifications
You must be signed in to change notification settings - Fork 0
/
sonatype.sbt
25 lines (24 loc) · 880 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
// Your profile name of the sonatype account. The default is the same with the organization value
sonatypeProfileName := "a-reisberg"
// To sync with Maven central, you need to supply the following information:
pomExtra in Global := {
<url>typebaselite.shalloui.com</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/a-reisberg/typebase-lite/</connection>
<developerConnection>scm:git:[email protected]:github.com/a-reisberg/typebase-lite/</developerConnection>
<url>github.com/a-reisberg/typebase-lite/</url>
</scm>
<developers>
<developer>
<id>a-reisberg</id>
<name>Alex Reisberg</name>
<url>https://github.com/a-reisberg</url>
</developer>
</developers>
}