-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
38 lines (19 loc) · 1 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
import AssemblyKeys._
name := "Scala-Pig"
version := "1.0"
scalaVersion := "2.10.0"
assemblySettings
resolvers += "JBoss" at "https://repository.jboss.org/nexus/content/groups/public/"
resolvers += "Apache Maven" at "http://mvnrepository.com/artifact"
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += "Simile" at "http://simile.mit.edu/maven/"
libraryDependencies += "org.scalatest" % "scalatest_2.10" % "1.9.1" % "test"
libraryDependencies += "org.apache.pig" % "pig" % "0.10.1"
libraryDependencies += "org.apache.hadoop" % "hadoop-core" % "1.1.2"
libraryDependencies += "log4j" % "log4j" % "1.2.15"
libraryDependencies += "jline" % "jline" % "0.9.94"
libraryDependencies += "com.google.guava" % "guava" % "r09"
libraryDependencies += "joda-time" % "joda-time" % "2.1"
libraryDependencies += "org.antlr" % "antlr-runtime" % "3.4"
libraryDependencies += "org.scalaj" % "scalaj-time_2.10.0-M7" % "0.6"
testOptions in Test += Tests.Argument("-oF")