This is partially going to depend on what feature you use (or don't
use). I would download the embedded tomcat .zip and take a look at the
jars provided in server/lib, common/lib and bin directories.
--David
lightbulb432 wrote:
I'd like to use Tomcat for in-place development, which can be done by using
the Tomcat JARs itself. Of course the scope dependency would be something
like "provided" for when the app is actually deployed, but for the purposes
of development what JARs are needed to run an embedded bootstrap Tomcat?
Thanks.
David Smith-2 wrote:
Could you post more details? Most Maven project only ever need the
servlet api (and optionally jsp api) declared in dependencies as:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
I can't imagine a need for tomcat specific jars in any project.
--David
lightbulb432 wrote:
I'd like to obtain Tomcat JARs using Maven, but I don't know which of its
JARs from the following URL are required:
http://tomcat.apache.org/dev/dist/m2-repository/org/apache/tomcat/
Which of those JARs are required for Tomcat?
Could somebody who uses Maven with Tomcat comment on how they use it for
obtaining Tomcat JARs?
Thanks.
---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
David Smith
Network Operations Supervisor
Department of Entomology
Cornell University
2132 Comstock Hall
Ithaca, NY 14853
Phone: (607) 255-9571
Fax: (607) 255-0940
---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]