Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explicitly add servlet-api to resolve run-time classpath issues. #335

Open
wants to merge 1 commit into
base: spark-1.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions project/SharkBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,12 @@ object SharkBuild extends Build {
// See https://code.google.com/p/guava-libraries/issues/detail?id=1095
"com.google.code.findbugs" % "jsr305" % "1.3.+",

// sbt fails down download the javax.servlet artifacts from jetty 8.1:
// http://mvnrepository.com/artifact/org.eclipse.jetty.orbit/javax.servlet/3.0.0.v201112011016
// which may be due to the use of the orbit extension. So, we manually include servlet api
// from a separate source.
"org.mortbay.jetty" % "servlet-api" % "3.0.20100224",

// Hive unit test requirements. These are used by Hadoop to run the tests, but not necessary
// in usual Shark runs.
"commons-io" % "commons-io" % "2.1",
Expand Down