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. I already deploy to tomcat in prod. Here's the jetty dependency. 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? Thanks in advance
