forked from ppurang/scaliak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
89 lines (77 loc) · 2.48 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name := "scaliak"
organization := "com.stackmob"
version := "0.1.1-SNAPSHOT"
scalaVersion := "2.9.1"
crossScalaVersions := Seq("2.9.1")
resolvers ++= Seq("Typesafe Repository (releases)" at "http://repo.typesafe.com/typesafe/releases/",
"Scala Tools Repository (snapshots)" at "http://scala-tools.org/repo-snapshots",
"Scala Tools Repository (releases)" at "http://scala-tools.org/repo-releases")
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-core" % "6.0.3" withSources(),
"net.liftweb" %% "lift-json-scalaz" % "2.4" withSources(),
"com.basho.riak" % "riak-client" % "1.0.5" withSources(),
"org.specs2" %% "specs2" % "1.9" % "test" withSources(),
"org.mockito" % "mockito-all" % "1.9.0" % "test" withSources()
)
logBuffered := false
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")
}
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { x => false }
pomExtra := (
<url>https://github.com/stackmob/scaliak</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:stackmob/scaliak.git</url>
<connection>scm:git:[email protected]:stackmob/scaliak.git</connection>
</scm>
<developers>
<developer>
<id>jrwest</id>
<name>Jordan West</name>
<url>http://www.stackmob.com</url>
</developer>
<developer>
<id>aaronschlesinger</id>
<name>Aaron Schlesinger</name>
<url>http://www.stackmob.com</url>
</developer>
<developer>
<id>taylorleese</id>
<name>Taylor Leese</name>
<url>http://www.stackmob.com</url>
</developer>
<developer>
<id>milesoconnell</id>
<name>Miles O'Connell</name>
<url>http://www.stackmob.com</url>
</developer>
<developer>
<id>dougrapp</id>
<name>Doug Rapp</name>
<url>http://www.stackmob.com</url>
</developer>
<developer>
<id>alexyakushev</id>
<name>Alex Yakushev</name>
<url>http://www.stackmob.com</url>
</developer>
<developer>
<id>willpalmeri</id>
<name>Will Palmeri</name>
<url>http://www.stackmob.com</url>
</developer>
</developers>
)