-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonatype.sbt
31 lines (30 loc) · 981 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
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
sonatypeProfileName := "com.mscharley"
pomExtra in Global := {
<url>https://github.com/mscharley/scala-xoroshiro128</url>
<licenses>
<license>
<name>CC0</name>
<url>http://creativecommons.org/publicdomain/zero/1.0/</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/mscharley/scala-xoroshiro128</connection>
<developerConnection>scm:git:git@github.com:mscharley/scala-xoroshiro128</developerConnection>
<url>github.com/mscharley/scala-xoroshiro128</url>
</scm>
<developers>
<developer>
<id>mscharley</id>
<name>Matthew Scharley</name>
<url>https://github.com/mscharley</url>
</developer>
</developers>
}