forked from jparkie/Spark2Cassandra
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sonatype.sbt
31 lines (28 loc) · 983 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
// Your profile name of the sonatype account. The default is the same with the organization value
sonatypeProfileName := "com.github.leoromanovsky"
// To sync with Maven central, you need to supply the following information:
publishMavenStyle := true
// License of your choice
licenses := Seq("APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/leoromanovsky/Spark2Cassandra"))
scmInfo := Some(
ScmInfo(
url("https://github.com/leoromanovsky/Spark2Cassandra"),
"scm:[email protected]:leoromanovsky/Spark2Cassandra.git"
)
)
developers := List(
Developer(
id="leoromanovsky",
name="Leo Romanovsky",
email="[email protected]",
url=url("http://leoromanovsky.com")
)
)
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")
}