-
Notifications
You must be signed in to change notification settings - Fork 1
/
sonatype.sbt
27 lines (26 loc) · 1.01 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
// Your profile name of the sonatype account. The default is the same with the organization value
sonatypeProfileName := "com.github.benniekrijger"
// To sync with Maven central, you need to supply the following information:
pomExtra in Global := {
<url>https://github.com/benniekrijger/scala-mollie</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/benniekrijger/scala-mollie</url>
<connection>scm:git:git:github.com:benniekrijger/scala-mollie.git</connection>
<developerConnection>scm:git:git@github.com:benniekrijger/scala-mollie.git</developerConnection>
</scm>
<developers>
<developer>
<id>benniekrijger</id>
<email>benniekrijger@hotmail.com</email>
<name>Bennie Krijger</name>
<url>https://github.com/benniekrijger</url>
</developer>
</developers>
}