-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.sbt
executable file
·71 lines (62 loc) · 2.24 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
name := "scalding-commons"
version := "0.0.5-SNAPSHOT"
organization := "com.twitter"
scalaVersion := "2.9.2"
resolvers ++= Seq(
"sonatype-snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"sonatype-releases" at "http://oss.sonatype.org/content/repositories/releases",
"Clojars Repository" at "http://clojars.org/repo",
"Conjars Repository" at "http://conjars.org/repo",
"Twitter Maven" at "http://maven.twttr.com",
"Twitter SVN Maven" at "https://svn.twitter.biz/maven-public"
)
scalacOptions ++= Seq("-unchecked")
libraryDependencies ++= Seq(
"backtype" % "dfs-datastores-cascading" % "1.2.1",
"backtype" % "dfs-datastores" % "1.2.0",
"commons-io" % "commons-io" % "2.4",
"com.google.protobuf" % "protobuf-java" % "2.4.1",
"com.twitter" % "util-core" % "5.3.10",
"com.twitter" %% "algebird" % "0.1.3",
"com.twitter" %% "scalding" % "0.8.1",
"com.twitter" %% "chill" % "0.0.3",
"com.twitter.elephantbird" % "elephant-bird-cascading2" % "3.0.5",
"com.hadoop.gplcompression" % "hadoop-lzo" % "0.4.16",
"org.apache.thrift" % "libthrift" % "0.5.0",
"org.scalacheck" %% "scalacheck" % "1.10.0" % "test",
"org.scala-tools.testing" % "specs_2.9.0-1" % "1.6.8" % "test"
)
parallelExecution in Test := true
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 := (
<url>https://github.com/twitter/scalding-commons</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<url>git@github.com:twitter/scalding-commons.git</url>
<connection>scm:git:git@github.com:twitter/scalding-commons.git</connection>
</scm>
<developers>
<developer>
<id>oscar</id>
<name>Oscar Boykin</name>
<url>http://twitter.com/posco</url>
</developer>
<developer>
<id>sritchie</id>
<name>Sam Ritchie</name>
<url>http://twitter.com/sritchie</url>
</developer>
</developers>)