On 21 Nov 2011, at 22:09, John Hinnegan <john.hinne...@gmail.com> wrote:
Hi, I'm looking for a resource for how to set dependencies on tomcat. I'm using SBT and looking to replace Jetty with Tomcat in the test/build phase. (SBT is a build tool written in Scala - I had to look it up) http://catb.org/~esr/faqs/*smart*-*questions*.html I already deploy to tomcat in prod. Here's the jetty dependency. Ugly. That's presumably a Maven reference? 15 "org.eclipse.jetty" % "jetty-webapp" % "7.4.5.v20110725" % "container", 16 "javax.servlet" % "servlet-api" % "2.5" % "provided" Where would I look to get the equivalent dependency for tomcat? Tomcat's Maven components are under group org.apache.tomcat - the rest varies by the bits you need and the version. Have a browse of the repo. p Thanks in advance