-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
44 lines (33 loc) · 1.22 KB
/
build.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
40
41
42
43
44
name := "Scala Burst Trie"
description := "Scala implementation of a Burst Trie"
organization := "com.nefariouszhen.trie"
version := "0.3-SNAPSHOT"
licenses := Seq("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/nbauernfeind/scala-burst-trie"))
publishMavenStyle := true
scalaVersion := "2.11.4"
crossScalaVersions := Seq("2.10.4", "2.11.4")
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
publishTo <<= version { (v: String) =>
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
pomExtra :=
<scm>
<connection>scm:git:https://github.com/nbauernfeind/scala-burst-trie.git</connection>
<developerConnection>scm:git:ssh://[email protected]:nbauernfeind/scala-burst-trie.git</developerConnection>
<url>https://github.com/nbauernfeind/scala-burst-trie</url>
</scm>
<developers>
<developer>
<id>nbauernfeind</id>
<name>Nathaniel Bauernfeind</name>
<email>[email protected]</email>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>