Re: FYI -- javax.servlet dependency issue workaround

2014-05-28 Thread Sean Owen
This class was introduced in Servlet 3.0. We have in the dependency tree some references to Servlet 2.5 and Servlet 3.0. The latter is a superset of the former. So we standardized on depending on Servlet 3.0. At least, that seems to have been successful in the Maven build, but this is just evidenc

Re: FYI -- javax.servlet dependency issue workaround

2014-05-27 Thread Prashant Sharma
Also just for sake of completeness, sometimes the desired dependency might just be an older version in that case even if you include it like above it may get evicted (Sbt's default strategy for conflict manager is to choose the latest version). So to further ensure that it does include it. We can

FYI -- javax.servlet dependency issue workaround

2014-05-27 Thread Kay Ousterhout
Hi all, I had some trouble compiling an application (Shark) against Spark 1.0, where Shark had a runtime exception (at the bottom of this message) because it couldn't find the javax.servlet classes. SBT seemed to have trouble downloading the servlet APIs that are dependencies of Jetty (used by th