forked from foursquare/oozie-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
42 lines (31 loc) · 1.2 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
import AssemblyKeys._ // put this at the top of the file
organization := "com.foursquare"
name := "oozie-web"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.9.1"
seq(webSettings :_*)
libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra" % "2.0.4",
"org.scalatra" %% "scalatra-scalate" % "2.0.4",
"org.scalatra" %% "scalatra-specs2" % "2.0.4" % "test",
"ch.qos.logback" % "logback-classic" % "1.0.0" % "runtime",
"org.eclipse.jetty" % "jetty-webapp" % "7.6.0.v20120127" % "container",
"org.eclipse.jetty" % "jetty-webapp" % "7.6.0.v20120127",
"javax.servlet" % "servlet-api" % "2.5" % "provided",
"org.scalaj" %% "scalaj-collection" % "1.2",
"com.yahoo.oozie" % "oozie-client" % "2.3.2-cdh3u3",
"com.typesafe" % "config" % "0.5.0"
)
resolvers += "Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
resolvers += "Cloudera" at "https://repository.cloudera.com/artifactory/cloudera-repos/"
ivyXML := (
<dependencies>
<exclude module="jmxtools"/>
<exclude module="jmxri"/>
<exclude module="jms"/>
<exclude module="hadoop-core" />
<exclude org="org.apache" name="hadoop-core"/>
</dependencies>
)
assemblySettings
net.virtualvoid.sbt.graph.Plugin.graphSettings