Re: Maven Jetty Plugin won't honor webAppSourceDirectory

2011-09-07 Thread dizzyd
This link helped me to solve my issue: http://maven.40175.n5.nabble.com/Does-the-lt-pluginGroup-gt-in-the-setting-xml-work-td115219.html my metadata file for org.mortbay.jetty had configured the prefix to always call jetty-maven-plugin vs maven-jetty-plugin. Both were in the file, but seems

Re: Maven Jetty Plugin won't honor webAppSourceDirectory

2011-09-06 Thread dizzyd
rg.mortbay.jetty:maven-jetty-plugin:run This uses the correct version of the plugin, but why? What setting is telling maven to use the newer one when I call jetty:run? -- View this message in context: http://maven.40175.n5.nabble.com/Maven-Jetty-Plugin-won-t-honor-webAppSourceDirectory-tp477450

Re: Maven Jetty Plugin won't honor webAppSourceDirectory

2011-09-06 Thread dizzyd
Noted...added version number. Thanks! -- View this message in context: http://maven.40175.n5.nabble.com/Maven-Jetty-Plugin-won-t-honor-webAppSourceDirectory-tp4774500p4774652.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Maven Jetty Plugin won't honor webAppSourceDirectory

2011-09-06 Thread Anders Hammar
Always specify a version number to ensure reproducable builds! /Anders (mobile) Den 6 sep 2011 16.26 skrev "dizzyd" : > got this fixed, thanks for the suggestion Jason. > > I changed this FROM: > >> >> org.mortbay.jetty >> maven-jetty-plugin >>

Re: Maven Jetty Plugin won't honor webAppSourceDirectory

2011-09-06 Thread dizzyd
got this fixed, thanks for the suggestion Jason. I changed this FROM: > > org.mortbay.jetty > maven-jetty-plugin > 6.1.22 > > > ${basedir}/src/main/webapp2 > ${basedir}/src/main/webapp2/WEB-INF/web.xml > > TO org.mortba

Re: Maven Jetty Plugin won't honor webAppSourceDirectory

2011-09-06 Thread Jason van Zyl
9:59 AM, dizzyd wrote: > Based on the documentation the Jetty plugin is supposed to allow you to be > able to change the default location of the webapp directory > (http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin) > > when I issue a mvn jetty:run in the plugin configuratio

Maven Jetty Plugin won't honor webAppSourceDirectory

2011-09-06 Thread dizzyd
Based on the documentation the Jetty plugin is supposed to allow you to be able to change the default location of the webapp directory (http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin) when I issue a mvn jetty:run in the plugin configuration I keep seeing this: ... [INFO

AW: maven jetty plugin - running two jetty's with different ports

2011-02-28 Thread Hauschel Fred Robert
Thanks for the hint! Fredy -Ursprüngliche Nachricht- Von: anders.g.ham...@gmail.com [mailto:anders.g.ham...@gmail.com] Im Auftrag von Anders Hammar Gesendet: Montag, 28. Februar 2011 11:14 An: Maven Users List Betreff: Re: maven jetty plugin - running two jetty's with different

Re: maven jetty plugin - running two jetty's with different ports

2011-02-28 Thread Anders Hammar
rt.hausc...@cirquent.de> wrote: > Hi List, > is it possible to run two jetty instances one on port 8080 and one on > port 8090? > Both jetty's should start several webApps. > > "Running Multiple Webapps" is decribed in > http://docs.codehaus.org/displ

maven jetty plugin - running two jetty's with different ports

2011-02-28 Thread Hauschel Fred Robert
Hi List, is it possible to run two jetty instances one on port 8080 and one on port 8090? Both jetty's should start several webApps. "Running Multiple Webapps" is decribed in http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin I hope this works

seeking simple maven jetty plugin fileserver example

2010-09-12 Thread Jacob Beard
Hi, Could anyone point me to an example of how to use the maven jetty plugin to simply serve files in the project root directory? I've seen one example of how to configure Jetty, outside of Maven, to act as a simple file server [0], but unfortunately, I was not able to get it to work.

Re: Run maven-jetty-plugin for webapp in other Maven module

2010-06-25 Thread ykyuen
Finally i can make the maven-jetty-plugin in the test project to start the webapp of another maven module. just add the following configuration in the pom.xml /"webapp_project_name" ${project.parent.basedir}/"webapp_project_name"/src/main/webapp ${project.parent.basedir}/

Re: Run maven-jetty-plugin for webapp in other Maven module

2010-06-24 Thread ykyuen
in context: http://maven.40175.n5.nabble.com/Run-maven-jetty-plugin-for-webapp-in-other-Maven-module-tp511054p511059.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Run maven-jetty-plugin for webapp in other Maven module

2010-06-24 Thread Stephen Connolly
t; webapp > is started. > > i try to use the exec-maven-plugin (in test project) to start the webapp > project using the maven-jetty-plugin (in webapp project). unfortunately > this > does not work as the exec:exec goal will hang as mvn jetty:run command does > not return. i g

Run maven-jetty-plugin for webapp in other Maven module

2010-06-24 Thread ykyuen
pre-integration-test and post-integration-test life cycle. the webapp is started. i try to use the exec-maven-plugin (in test project) to start the webapp project using the maven-jetty-plugin (in webapp project). unfortunately this does not work as the exec:exec goal will hang as mvn jetty:run

Re: maven-jetty-plugin VS Tomcat

2009-12-28 Thread ykyuen
n and java.lang.ClassNotFoundException. The problem is solved. Thanks. Regards, Kit -- View this message in context: http://old.nabble.com/maven-jetty-plugin-VS-Tomcat-tp26897619p26950332.html Sent from the Maven - Users mailing list archive at Nabbl

maven-jetty-plugin VS Tomcat

2009-12-22 Thread ykyuen
Hi all, i have created a war maven project and if i start in using maven-jetty plugin, everything works fine. but if i tried to deploy the war project to tomcat. there is an error in the calalina.log Dec 23, 2009 1:43:22 PM org.apache.catalina.core.StandardEngine start INFO: Starting Servlet

Re: Maven jetty plugin and excluding activation jar

2009-10-15 Thread richard schmidt
Okay, get it now...thanks for the hint! On Thu, Oct 15, 2009 at 4:16 PM, richard schmidt wrote: > I am sorry but I dont understand what you mean? > > > On Thu, Oct 15, 2009 at 3:24 PM, Wayne Fay wrote: > >> > How can I configure the maven-jetty-plugin to exclude the

Re: Maven jetty plugin and excluding activation jar

2009-10-14 Thread richard schmidt
I am sorry but I dont understand what you mean? On Thu, Oct 15, 2009 at 3:24 PM, Wayne Fay wrote: > > How can I configure the maven-jetty-plugin to exclude the activation.jar > > when jetty starts up? > > Proper usage of profiles is nearly always the solution to these k

Re: Maven jetty plugin and excluding activation jar

2009-10-14 Thread Wayne Fay
> How can I configure the maven-jetty-plugin to exclude the activation.jar > when jetty starts up? Proper usage of profiles is nearly always the solution to these kinds of problems. Wayne - To unsubscribe, e-mail:

Maven jetty plugin and excluding activation jar

2009-10-14 Thread richard schmidt
. Jetty DOES include the activation.jar in its lib directory. If I use the maven-jetty-plugin to test our application, then I get all sorts of errors due to the VM finding multiple copies of the application.jar in its classpath How can I configure the maven-jetty-plugin to exclude the activation.jar

Re: help getting maven jetty plugin and jmx to work

2009-09-17 Thread Mick Knutson
Sorry... I am trying to start jetty with the Maven jetty plugin to allow me to see the JMX MBeans in Jetty. Specifically trying to track down JNDI errors, and according to the way you start the standalone Jetty, you pass in the JVM args. We How can I do this with the Maven plugin as there are no

Re: help getting maven jetty plugin and jmx to work

2009-09-17 Thread Stephen Connolly
I might be a tad thick, but I'm having trouble seeing what your questionhas to do with maven. have you tried the jetty lists first? On Thursday, September 17, 2009, Mick Knutson wrote: > I have tried to understand: > http://wiki.eclipse.org/Jetty/Howto/Run_Jetty_with_JConsole > > But I do not hav

help getting maven jetty plugin and jmx to work

2009-09-17 Thread Mick Knutson
I have tried to understand: http://wiki.eclipse.org/Jetty/Howto/Run_Jetty_with_JConsole But I do not have a jetty-jmx.xml that seems to work. I have tried this jetty-jmx.xml: http://blogs.exist.com/oching/2009/02/26/configuring-jsw-embedded-jetty-with-jmx/ But I get deployment errors with this c

maven jetty plugin does not rebuild war

2009-05-20 Thread tubin gen
maven plugin in my pom org.mortbay.jetty jetty-maven-plugin 7.0.0.pre5 /audit ${basedir}/jetty-env.xml commons-dbcp commons-dbcp

Re: set up log4j with maven jetty plugin

2008-11-03 Thread Rusty Wright
Does this help: http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin Near the bottom is some stuff about logging. miro wrote: Please help me setup log4j with maven jetty plugin . here my configration for maven jetty plugin org.mortbay.jetty

set up log4j with maven jetty plugin

2008-11-03 Thread miro
Please help me setup log4j with maven jetty plugin . here my configration for maven jetty plugin org.mortbay.jetty maven-jetty-plugin 6.1.12.rc4 pleas help me

Re: Maven Jetty Plugin and filtered resources

2008-03-28 Thread Bruno Aranda
I have the same problem as explained below. Does someone know of a solution or alternative? Thanks, Bruno On 26/10/2006, Martin Gilday <[EMAIL PROTECTED]> wrote: > Hi, > I am trying to use the Jetty plugin for Maven but have my web.xml > filtered with properties. This is mainly as I have a "s

Configure maven-jetty-plugin logging

2008-01-20 Thread Michael Osipov
Hi, I have some serious logging configuration problems with Maven, slf4j and Jetty. The jetty plugin was configured this way http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin#Logging but all I see are the log outputs from jetty, none from my webapp made with slf4j :-( Did I

Configure maven-jetty-plugin logging

2008-01-18 Thread Michael
Hi, I have some serious logging configuration problems with Maven, slf4j and Jetty. The jetty plugin was configured this way http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin#Logging but all I see are the log outputs from jetty, none from my webapp made with slf4j :-( Did I something

RE: maven jetty plugin

2007-11-15 Thread John Coleman
Thanks, but is that possible using the Mavenide? I'd like to be able to easy run jetty with or without debug, the control being in a profile. TIA John -Original Message- From: Hugo Palma [mailto:[EMAIL PROTECTED] Sent: 14 November 2007 17:27 To: Maven Users List Subject: Re: maven

Re: maven jetty plugin

2007-11-14 Thread Hugo Palma
Just provide those parameters to the maven JVM and jetty will use them. I usually just set the env variable MAVEN_OPTS with: MAVEN_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005" and then just run: mvn jetty:run John Coleman wrote: Hi, How do I run the jett

maven jetty plugin

2007-11-14 Thread John Coleman
Hi, How do I run the jetty goal with jetty configured with a debug socket? I need to pass -Xdebug and other properties to jetty. TIA John Eurobase International Limited and its subsidiaries (Eurobase) are unable to exercise control over the content of information in E-Mails. Any view

Re: Debugging with the Maven Jetty Plugin in Netbeans

2007-08-17 Thread Milos Kleint
gt; > It would be nice not to have to set up jetty somewhere else, as the > dev > > team have to learn a lot of extra non-business related stuff. > > > > netbeans own deployment maybe? AFAIK there's not an jetty > module/plugin for netbeans though.. > > Milos

RE: Debugging with the Maven Jetty Plugin in Netbeans

2007-08-17 Thread John Coleman
nt [mailto:[EMAIL PROTECTED] Sent: 17 August 2007 12:27 To: Maven Users List Subject: Re: Debugging with the Maven Jetty Plugin in Netbeans On 8/17/07, John Coleman <[EMAIL PROTECTED]> wrote: > Thanks for that suggestion, not really a slick solution. Would it be > possible for the p

Re: Debugging with the Maven Jetty Plugin in Netbeans

2007-08-17 Thread Milos Kleint
IK there's not an jetty module/plugin for netbeans though.. Milos > John > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 17 August 2007 12:06 > To: Maven Users List > Subject: Re: Debugging with the Maven Jetty Plugin in Netbea

RE: Debugging with the Maven Jetty Plugin in Netbeans

2007-08-17 Thread John Coleman
have to learn a lot of extra non-business related stuff. John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 17 August 2007 12:06 To: Maven Users List Subject: Re: Debugging with the Maven Jetty Plugin in Netbeans John Coleman wrote: > There's documenta

Re: Debugging with the Maven Jetty Plugin in Netbeans

2007-08-17 Thread Milos Kleint
John Coleman wrote: There's documentation for "Debugging with the Maven Jetty Plugin in Eclipse", but does such exist for NetBeans? Anyone know how to do this if not? run the jetty plugin externally (not with the embedded version of maven in netbeans, but in different jvm)

Debugging with the Maven Jetty Plugin in Netbeans

2007-08-17 Thread John Coleman
There's documentation for "Debugging with the Maven Jetty Plugin in Eclipse", but does such exist for NetBeans? Anyone know how to do this if not? TIA John Eurobase International Limited and its subsidiaries (Eurobase) are unable to exercise control over the content of i

Maven-jetty-plugin with multiple jetty.xml possible??

2007-05-29 Thread copernic Jeremy
Hi everyone! I was wondering if it is possible with the embemdded maven-jetty-plugin to launch the server with more than only one jetty.xml configuration file, like under the normal jetty server? For example, with the normal jetty server, the launching command with multiple configuration files

maven-jetty-plugin cant instantiate

2007-02-14 Thread juergen.schumacher
experiences or even any idea what happened? Thx and have a nice day, Juergen -- View this message in context: http://www.nabble.com/maven-jetty-plugin-cant-instantiate-tf3227554s177.html#a8965896 Sent from the Maven - Users mailing list archive at Nabble.com. -

Maven Jetty Plugin and filtered resources

2006-10-26 Thread Martin Gilday
Hi, I am trying to use the Jetty plugin for Maven but have my web.xml filtered with properties. This is mainly as I have a "sandbox" profile which when active would change the spring config file being used. I have tried using the WAR plugin to define some filtered resources org.apache.ma

Re: maven-jetty-plugin PluginDescriptor

2006-09-14 Thread franz see
the same error. > > Any idea what's causing the error, or where should i start looking? :-) > > Thanks a bunch, > Franz > > [1] > http://sourceforge.net/project/showfiles.php?group_id=7322&package_id=106252 > [2] http://www.ibiblio.org/maven2/org/mortbay/jetty/maven-

Re: maven-jetty-plugin PluginDescriptor

2006-09-06 Thread franz see
e should i start looking? :-) Thanks a bunch, Franz [1] http://sourceforge.net/project/showfiles.php?group_id=7322&package_id=106252 [2] http://www.ibiblio.org/maven2/org/mortbay/jetty/maven-jetty-plugin/ > Edwin Punzalan wrote: > Hi. > > I had the same problem and resolve

Re: maven-jetty-plugin PluginDescriptor

2006-09-06 Thread Edwin Punzalan
Hi. I had the same problem and resolved it by using this instead: mvn org.mortbay.jetty:maven-jetty-plugin:6.0.0rc4:run Hope that helped. ^_^ franz see wrote: Good day, I have just checked out jetty from [1], and I built it using "mvn clean install -DupdateReleaseInfo=true. And it bui

maven-jetty-plugin PluginDescriptor

2006-09-06 Thread franz see
[2] http://rafb.net/paste/results/s2hUpB26.html -- View this message in context: http://www.nabble.com/maven-jetty-plugin-PluginDescriptor-tf2225230.html#a6166225 Sent from the Maven - Users forum at Nabble.com. - To unsubscribe,

Re: Maven Jetty Plugin

2004-06-26 Thread Nick Lothian
> > -Original Message- > > From: Nick Lothian [mailto:[EMAIL PROTECTED] > > Sent: samedi 26 juin 2004 10:42 > > To: [EMAIL PROTECTED] > > Subject: Maven Jetty Plugin > > > > Is there any information for how to use the jetty plugin? > > >

RE: Maven Jetty Plugin

2004-06-26 Thread Vincent Massol
> -Original Message- > From: Nick Lothian [mailto:[EMAIL PROTECTED] > Sent: samedi 26 juin 2004 10:42 > To: [EMAIL PROTECTED] > Subject: Maven Jetty Plugin > > Is there any information for how to use the jetty plugin? > > I'd like to use it to start up a

Maven Jetty Plugin

2004-06-26 Thread Nick Lothian
Is there any information for how to use the jetty plugin? I'd like to use it to start up a servlet and then run some JUnit tests against it. I've figured out how to start it and configure it, but starting jetty blocks the build process. Is there a way to fork the maven process that starts jetty,