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]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Which-Tomcat-JARs-are-required--tf3716344.html#a10397688
Sent from the Tomcat - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to