Embedding Tomcat with Maven

2003-10-24 Thread Lukasz Piestrzeniewicz
Hello! I wonder if anyone has expirience with embedding Tomcat using Maven and would like to share his knowleadge? We use Maven in our new project (which is a web application). We would like to build version of application with embedded Tomcat. The final archive should contain the application war

Re: Embedding Tomcat with Maven

2003-10-24 Thread Ben Walding
Any reason you've chosen Tomcat over Jetty? Why would a user care if they ran a supa uber jar vs. unpacking and stuffing around with script files etc. Lukasz Piestrzeniewicz wrote: Hello! I wonder if anyone has expirience with embedding Tomcat using Maven and would like to share his

Re: Embedding Tomcat with Maven

2003-10-24 Thread Lukasz Piestrzeniewicz
Ben Walding wrote: Any reason you've chosen Tomcat over Jetty? Because we know how to embed Tomcat :) But after your suggestion I try to look around and find more information about Jetty. Why would a user care if they ran a supa uber jar vs. unpacking and stuffing around with script files etc.

Re: Embedding Tomcat with Maven

2003-10-24 Thread Paul Libbrecht
[] {loader}); Method processMethod = startupClass.getMethod(process, new Class[] {String[].class}); processMethod.invoke(startupInstance,new Object[] {args}); Hope that helps. Paul Lukasz Piestrzeniewicz wrote: Hello! I wonder if anyone has expirience with embedding Tomcat