-
Notifications
You must be signed in to change notification settings - Fork 4
/
sonatype.sbt
41 lines (28 loc) · 850 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
32
33
34
35
36
37
38
39
// sonatype stuff...
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")
}
pomIncludeRepository := { _ => false }
licenses := Seq("APL2" -> url("https://opensource.org/licenses/Apache-2.0"))
homepage := Some(url("https://github.com/darrenjw/scala-glm/blob/master/README.md"))
scmInfo := Some(
ScmInfo(
url("https://github.com/darrenjw/scala-glm"),
"scm:[email protected]:darrenjw/scala-glm.git"
)
)
developers := List(
Developer(
id = "darrenjw",
name = "Darren J Wilkinson",
email = "[email protected]",
url = url("https://github.com/darrenjw")
)
)
publishMavenStyle := true
Test / publishArtifact := false
// eof