Re: Trim string passed to extraClasspath for jetty plugin

2012-11-06 Thread Benson Margulies
You could offer a patch to the jetty plugin to clean up the string for itself. On Tue, Nov 6, 2012 at 2:53 AM, Rice Yeh rice...@gmail.com wrote: Hi, I have a need to pass a long string to the extraClasspath in jetty plugin. The content of the string is changed often and I like to format

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

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

Re: Maven Jetty Plugin won't honor webAppSourceDirectory

2011-09-06 Thread Jason van Zyl
, at 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 configuration I keep seeing

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: plugin groupIdorg.mortbay.jettygroupId artifactIdmaven-jetty-plugin/artifactId version6.1.22/version configuration webAppSourceDirectory${basedir}/src/main/webapp2/webAppSourceDirectory webXml

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 delali.dzir...@gmail.com: got this fixed, thanks for the suggestion Jason. I changed this FROM: plugin groupIdorg.mortbay.jettygroupId artifactIdmaven-jetty-plugin/artifactId

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 dizzyd
artifactIdmaven-jetty-plugin/artifactId version6.1.22/version configuration webAppSourceDirectory${basedir}/src/main/webapp2/webAppSourceDirectory webXml${basedir}/src/main/webapp2/WEB-INF/web.xml/webXml /configuration plugin when I do a mvn: jetty:run looks like

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. Thanks Fredy

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

2011-02-28 Thread Anders Hammar
...@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/display/JETTY/Maven+Jetty+Plugin I hope this works. Thanks Fredy

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 ports

Re: Jetty Plugin Error:

2011-02-06 Thread Anders Hammar
are created by default. Is this not true? From commandmvn jetty:run -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com] Sent: Saturday, February 05, 2011 10:58 PM To: Maven Users List Subject: Re: Jetty Plugin Error: [ERROR] Failed to execute goal

Jetty Plugin Error:

2011-02-05 Thread Jonthan DeMaagd
[INFO] Scanning for projects... [INFO] [INFO] [INFO] Building simple-webapp Maven Webapp 1.0-SNAPSHOT [INFO] [INFO] [INFO] maven-jetty-plugin

Failed to execute goal with jetty-plugin

2011-02-05 Thread Jonthan DeMaagd
[ERROR] Failed to execute goal org.mortbay.jetty:maven-jetty-plugin:6.1.22:run (default-cli) on project simple-webapp: Webapp source directory C:\Users\jondemaagd\MavenProjects\simple-webapp\src\main\webapp does not exist - [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re

Re: Jetty Plugin Error:

2011-02-05 Thread Wayne Fay
[ERROR] Failed to execute goal org.mortbay.jetty:maven-jetty-plugin:6.1.10:run (default-cli) on project simple-webapp: Webapp source directory C:\Users\jondemaagd\MavenProjects\simple-webapp\src\main\webapp does not exist - [Help 1] Did you read the error? It says blah\src\main\webapp does

RE: Jetty Plugin Error:

2011-02-05 Thread Jonthan DeMaagd
My understanding is that these directories and files are created by default. Is this not true? From commandmvn jetty:run -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com] Sent: Saturday, February 05, 2011 10:58 PM To: Maven Users List Subject: Re: Jetty Plugin Error

Re: Jetty Plugin Error:

2011-02-05 Thread Wayne Fay
My understanding is that these directories and files are created by default. Is this not true? From commandmvn jetty:run Having this directory or not depends entirely on what archetype you used when you built your project. If you didn't create a war (webapp) project, then you probably don't

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. I

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 contextPath/webapp_project_name/contextPath webAppSourceDirectory${project.parent.basedir}/webapp_project_name/src/main/webapp

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

2010-06-24 Thread ykyuen
such that in the 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: Run maven-jetty-plugin for webapp in other Maven module

2010-06-24 Thread Stephen Connolly
. 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 guess i could solve this problem by adding

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: jetty plugin and gmaven

2010-05-03 Thread Anders Hammar
I can't say if the jetty plugin config is correct, but for it to apply when you run jetty:run you need to move it to the pluginManagement section. http://maven.apache.org/pom.html#Plugin_Management /Anders On Mon, May 3, 2010 at 20:45, Bill Smith ne...@weseewhathappens.com wrote: I am trying

Re: maven-jetty-plugin VS Tomcat

2009-12-28 Thread ykyuen
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 Nabble.com

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 hangst...@gmail.comwrote: I am sorry but I dont understand what you mean? On Thu, Oct 15, 2009 at 3:24 PM, Wayne Fay wayne...@gmail.com wrote: How can I configure the maven-jetty-plugin to exclude

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: 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: users-unsubscr

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 wayne...@gmail.com 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 kinds

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

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 mickknut...@gmail.com wrote: I have tried to understand: http://wiki.eclipse.org/Jetty/Howto/Run_Jetty_with_JConsole

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

Blank Page with Jetty Plugin

2009-09-09 Thread Neil Chaudhuri
I am trying to get the Jetty plugin to work with Hibernate's c3p0 connection pool. The server seems to start just fine with run-war, but when I navigate to any URL at localhost:8080, I see nothing but a blank page. And I mean ANY. If it is just literally localhost:8080, I see a blank page. If I

Re: Blank Page with Jetty Plugin

2009-09-09 Thread Mick Knutson
://linkedin.com/in/mickknutson Vacation Rental: http://tahoe.baselogic.com --- On Wed, Sep 9, 2009 at 10:43 AM, Neil Chaudhuri nchaudh...@potomacfusion.com wrote: I am trying to get the Jetty plugin to work with Hibernate's c3p0 connection pool. The server seems to start just fine with run-war

RE: Blank Page with Jetty Plugin

2009-09-09 Thread Neil Chaudhuri
and/or why the 2 IDEs react differently to them is much appreciated. Thanks. -Original Message- From: mknut...@baselogic.com on behalf of Mick Knutson Sent: Wed 9/9/2009 9:50 AM To: Maven Users List Subject: Re: Blank Page with Jetty Plugin Not sure about starting Jetty automatically

Re: Blank Page with Jetty Plugin

2009-09-09 Thread Mick Knutson
: mknut...@baselogic.com on behalf of Mick Knutson Sent: Wed 9/9/2009 9:50 AM To: Maven Users List Subject: Re: Blank Page with Jetty Plugin Not sure about starting Jetty automatically, as I use Tomcat and Cargo for that, but to just start Jetty and test manually, I created an index.html file

Very weird jetty-plugin behaviour (excluding plugin dependency when run from parent module)

2009-06-25 Thread aldana
hi, my setting is as follows: rootModule -webapp In pre-integration-test I start webapp with jetty plugin (webapp/pom.xml): plugin org.mortbay.jetty/groupId artifactIdmaven-jetty-plugin/artifactId version6.1.18/version dependencies

Re: Very weird jetty-plugin behaviour (excluding plugin dependency when run from parent module)

2009-06-25 Thread aldana
I checked out a newer version of jetty plugin (http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-maven-plugin/7.0.0.1beta2/). The problem is gone there. It seems that my problem is a bug of jetty plugin 6.1.18. aldana wrote: hi, my setting is as follows: rootModule -webapp

Re: Very weird jetty-plugin behaviour (excluding plugin dependency when run from parent module)

2009-06-25 Thread aldana
override the dependencies setting of a plugin of a child module. I would expect the opposite. aldana wrote: I checked out a newer version of jetty plugin (http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-maven-plugin/7.0.0.1beta2/). The problem is gone there. It seems that my problem

multimodule project: jetty plugin running two webapp-modules on same port

2009-06-21 Thread aldana
hi, I got following project structure: app1/ -core-stuff -webapp1/ -webapp2/ I tried to put jetty plugin config to app1/pom.xml and expected that submodules with war packaging would inherit this setting. This does not work because jetty plugin moans about core-stuff/ not having a webapp

Re: multimodule project: jetty plugin running two webapp-modules on same port

2009-06-21 Thread Stephen Connolly
you'll need another module that depends on the two web apps On Sunday, June 21, 2009, aldana ald...@gmx.de wrote: hi, I got following project structure: app1/  -core-stuff  -webapp1/  -webapp2/ I tried to put jetty plugin config to app1/pom.xml and expected that submodules with war

Re: multimodule project: jetty plugin running two webapp-modules on same port

2009-06-21 Thread aldana
On Sunday, June 21, 2009, aldana ald...@gmx.de wrote: hi, I got following project structure: app1/  -core-stuff  -webapp1/  -webapp2/ I tried to put jetty plugin config to app1/pom.xml and expected that submodules with war packaging would inherit this setting. This does not work

Re: multimodule project: jetty plugin running two webapp-modules on same port

2009-06-21 Thread Stephen Connolly
jetty plugin config to app1/pom.xml and expected that submodules with war packaging would inherit this setting. This does not work because jetty plugin moans about core-stuff/ not having a webapp folder. Now my questions are: -Is it possible to tell a plugin run only to be applied on a certain

maven jetty plugin does not rebuild war

2009-05-20 Thread tubin gen
maven plugin in my pom plugin groupIdorg.mortbay.jetty/groupId artifactIdjetty-maven-plugin/artifactId version7.0.0.pre5/version configuration contextPath/audit/contextPath

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-27 Thread nodje
                           doCheckfalse/doCheck                            doUpdatefalse/doUpdate                        /configuration                    /plugin                    plugin                        groupIdorg.mortbay.jetty/groupId                        artifactIdmaven-jetty-plugin/artifactId

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-27 Thread Olivier Lamy
                   plugin                        groupIdorg.mortbay.jetty/groupId                        artifactIdmaven-jetty-plugin/artifactId                        version6.1.16/version                        executions                            execution

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-19 Thread nodje
                       artifactIdmaven-jetty-plugin/artifactId                        version6.1.16/version                        executions                            execution                                phasevalidate/phase                                goals                                    goalrun

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-17 Thread Olivier Lamy
                           doUpdatefalse/doUpdate                        /configuration                    /plugin                    plugin                        groupIdorg.mortbay.jetty/groupId                        artifactIdmaven-jetty-plugin/artifactId                        version6.1.16/version

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-16 Thread nodje
                           doCheckfalse/doCheck                            doUpdatefalse/doUpdate                        /configuration                    /plugin                    plugin                        groupIdorg.mortbay.jetty/groupId                        artifactIdmaven-jetty-plugin/artifactId

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-14 Thread Olivier Lamy
                   /plugin                    plugin                        groupIdorg.mortbay.jetty/groupId                        artifactIdmaven-jetty-plugin/artifactId                        version6.1.16/version                        executions                            execution

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-14 Thread Olivier Lamy
                           doUpdatefalse/doUpdate                        /configuration                    /plugin                    plugin                        groupIdorg.mortbay.jetty/groupId                        artifactIdmaven-jetty-plugin/artifactId                        version6.1.16

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-14 Thread nodje
                           doCheckfalse/doCheck                            doUpdatefalse/doUpdate                        /configuration                    /plugin                    plugin                        groupIdorg.mortbay.jetty/groupId                        artifactIdmaven-jetty-plugin/artifactId

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-13 Thread nodje
plugin groupIdorg.mortbay.jetty/groupId artifactIdmaven-jetty-plugin/artifactId version6.1.16/version executions execution

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-13 Thread Stephen Connolly
/configuration /plugin plugin groupIdorg.mortbay.jetty/groupId artifactIdmaven-jetty-plugin/artifactId version6.1.16/version executions

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-13 Thread Olivier Lamy
/doUpdate                        /configuration                    /plugin                    plugin                        groupIdorg.mortbay.jetty/groupId                        artifactIdmaven-jetty-plugin/artifactId                        version6.1.16/version

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-13 Thread nodje
plugin groupIdorg.mortbay.jetty/groupId artifactIdmaven-jetty-plugin/artifactId version6.1.16/version executions execution

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-13 Thread nodje
                       artifactIdmaven-jetty-plugin/artifactId                        version6.1.16/version                        executions                            execution                                phasevalidate/phase                                goals

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-10 Thread nodje
thanks. It works when you chain the goals manually: mvn buildnumber:create jetty:run-exploded does work. Now, I can already hear the developers complaining. Is there a way to tell jetty plugin to execute buildnumber:create? I could add an execution section to link the create goal to any jetty

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-10 Thread Stephen Connolly
with myPod] ;-) On 10 Apr 2009, at 10:01, nodje nodje...@gmail.com wrote: thanks. It works when you chain the goals manually: mvn buildnumber:create jetty:run-exploded does work. Now, I can already hear the developers complaining. Is there a way to tell jetty plugin to execute buildnumber:create? I

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-10 Thread Wayne Fay
] ;-) On 10 Apr 2009, at 10:01, nodje nodje...@gmail.com wrote: thanks. It works when you chain the goals manually: mvn buildnumber:create jetty:run-exploded does work. Now, I can already hear the developers complaining. Is there a way to tell jetty plugin to execute buildnumber:create

Using buildnumber-maven-plugin together with jetty plugin

2009-04-09 Thread nodje
it seems Jetty isn't aware of the ${buildNumber} variable when it check the name of the war it has to deploy. Did anyone successfully use both plugin together? cheers -nodje -- View this message in context: http://n2.nabble.com/Using-buildnumber-maven-plugin-together-with-jetty-plugin

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-09 Thread Dan Tran
the name of the war it has to deploy. Did anyone successfully use both plugin together? cheers -nodje -- View this message in context: http://n2.nabble.com/Using-buildnumber-maven-plugin-together-with-jetty-plugin-tp2609616p2609616.html Sent from the maven users mailing list archive

Re: Using buildnumber-maven-plugin together with jetty plugin

2009-04-09 Thread Kalle Korhonen
On Thu, Apr 9, 2009 at 7:32 AM, Dan Tran dant...@gmail.com wrote: I may be wrong, but i think finalName is constructed early in the cycle and therefor buildNumber var is not propagate properly, does maven 2.1.0 help? No, the problem is that since Nodje is executing jetty plugin directly

Can JNDI be configured in the Jetty plugin configuration/ section?

2008-12-08 Thread David C. Hicks
I'm switching my app to use JNDI to find its datasource, but I'd really rather not have to drop a jetty-env.xml file into my source tree. I figured I could put my configure/ for the JNDI resource into the maven-jetty-plugin's configuration/ section. Now that I've done that and altered my

Re: Jetty Plugin Heap Size

2008-11-26 Thread Brett Porter
It runs within the same VM, so the standard MAVEN_OPTS variable used before Maven works. - Brett On 25/11/2008, at 6:36 AM, David C. Hicks wrote: Is there a way to control the heap size for the Jetty Plugin? I've been looking, but I don't see anything. Thanks, Dave

Re: Jetty Plugin Heap Size

2008-11-26 Thread Gabriele Columbro
used before Maven works. - Brett On 25/11/2008, at 6:36 AM, David C. Hicks wrote: Is there a way to control the heap size for the Jetty Plugin? I've been looking, but I don't see anything. Thanks, Dave

Jetty Plugin Heap Size

2008-11-24 Thread David C. Hicks
Is there a way to control the heap size for the Jetty Plugin? I've been looking, but I don't see anything. Thanks, Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

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 plugin groupIdorg.mortbay.jetty/groupId artifactIdmaven-jetty-plugin/artifactId version6.1.12.rc4/version configuration

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 plugin groupIdorg.mortbay.jetty

Re: command line debug args for jetty plugin?

2008-10-06 Thread Mick Knutson
[EMAIL PROTECTED] wrote: I am trying to connect to my Jetty application, but want to know how to add the following to the jetty plugin: -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 -- --- Thank You… Mick Knutson BASE Logic, inc. (415) 354-4215

command line debug args for jetty plugin?

2008-10-02 Thread Mick Knutson
I am trying to connect to my Jetty application, but want to know how to add the following to the jetty plugin: -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 -- --- Thank You… Mick Knutson BASE Logic, inc. (415) 354-4215 Website: http://baselogic.com Blog: http

Re: command line debug args for jetty plugin?

2008-10-02 Thread Andrew Robinson
the following to the jetty plugin: -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 -- --- Thank You… Mick Knutson BASE Logic, inc. (415) 354-4215 Website: http://baselogic.com Blog: http://baselogic.com/blog BLiNC Magazine: http://blincmagazine.com Linked

Re: command line debug args for jetty plugin?

2008-10-02 Thread Olivier Lamy
Perso I use : mvnDebug jetty:run (and you have a debugger on port 8080) 2008/10/2 Mick Knutson [EMAIL PROTECTED]: I am trying to connect to my Jetty application, but want to know how to add the following to the jetty plugin: -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address

Re: Missing artifact org.apache.maven.plugins:maven-jetty-plugin

2008-04-15 Thread Trenton D. Adams
a silly mistake. -Original Message- From: Dennis Lundberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 08, 2008 5:57 PM To: Maven Users List Subject: Re: Missing artifact org.apache.maven.plugins:maven-jetty-plugin This is not an official plugin, so it has a different groupId than

Missing artifact org.apache.maven.plugins:maven-jetty-plugin

2008-04-08 Thread Brier, Frederick (IHG Temp)
I was attempting to use AppFuse. Created a project from an archetype and then tried mvn jetty:run-war. I got a BUILD ERROR - The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does not exist or no valid version could be found. So I checked. Sure enough, the plugin is missing from

Re: Missing artifact org.apache.maven.plugins:maven-jetty-plugin

2008-04-08 Thread Michael
Brier, Frederick (IHG Temp) wrote: I was attempting to use AppFuse. Created a project from an archetype and then tried mvn jetty:run-war. I got a BUILD ERROR - The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does not exist or no valid version could be found. So I checked. Sure

Re: Missing artifact org.apache.maven.plugins:maven-jetty-plugin

2008-04-08 Thread Dennis Lundberg
This is not an official plugin, so it has a different groupId than the normal official plugins. Therefor you have to specify the groupId to be able to use it: org.mortbay.jetty:maven-jetty-plugin Brier, Frederick (IHG Temp) wrote: I was attempting to use AppFuse. Created a project from

RE: Missing artifact org.apache.maven.plugins:maven-jetty-plugin

2008-04-08 Thread Brier, Frederick (IHG Temp)
Thank you. I made a silly mistake. -Original Message- From: Dennis Lundberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 08, 2008 5:57 PM To: Maven Users List Subject: Re: Missing artifact org.apache.maven.plugins:maven-jetty-plugin This is not an official plugin, so it has

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

The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does not exist

2008-02-28 Thread Neo Anderson
I follow the http://appfuse.org/display/APF/AppFuse+QuickStart to practise to use the maven. Then I encounter a problem saying 'The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does not exist' when issuing command 'maven jetty:run-war' I checked the archive - http://www.mail

Re: The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does not exist

2008-02-28 Thread Andrew Robinson
Yup, it doesn't exist, it is not an apache plugin, so has to be qualified: plugin groupIdorg.mortbay.jetty/groupId artifactIdmaven-jetty-plugin/artifactId version6.1.7/version /plugin -Andrew On Thu, Feb 28, 2008 at 8:32 AM, Neo

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 jetty

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 jetty

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

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 information in E-Mails

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) with the proper

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 documentation

Re: Debugging with the Maven Jetty Plugin in Netbeans

2007-08-17 Thread Milos Kleint
as the eclipse solution. Spawn a new jvm with the debug parameters. and attach to it. I'm not fluent with the jetty plugin to tell if it's possible to configure to run externally (and thus be able to set the parameters via plugin config) but I always supposed that jetty is running in the same VM

RE: Debugging with the Maven Jetty Plugin in Netbeans

2007-08-17 Thread John Coleman
:[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 plugin to spawn another thread

Re: Debugging with the Maven Jetty Plugin in Netbeans

2007-08-17 Thread Milos Kleint
$ mvn -o jetty:run Looks linux, but is there any way to use this with NetBeans/Mavenide+ WinXP? John -Original Message- From: Milos Kleint [mailto:[EMAIL PROTECTED] Sent: 17 August 2007 12:27 To: Maven Users List Subject: Re: Debugging with the Maven Jetty Plugin in Netbeans

Re: [JETTY PLUGIN]

2007-08-06 Thread Jan Torben Heuer
On Friday 03 August 2007 17:05:50 Craig Ching wrote: Hallo, Maybe I'm wrong about this, but I don't think there would be a way to set those in the pom as the jetty plugin runs inside the same JVM that maven runs in and I don't know of a way to set those after the JVM has been created. I

Re: [JETTY PLUGIN]

2007-08-04 Thread João Kreuzberg
Ok, Will try again the MAVEN_OPTS Thanks for your response, Regards, João Kreuzberg On 8/3/07, Craig Ching [EMAIL PROTECTED] wrote: Hi Joao Maybe I'm wrong about this, but I don't think there would be a way to set those in the pom as the jetty plugin runs inside the same JVM that maven

Re: [JETTY PLUGIN]

2007-08-03 Thread Craig Ching
Hi Joao Maybe I'm wrong about this, but I don't think there would be a way to set those in the pom as the jetty plugin runs inside the same JVM that maven runs in and I don't know of a way to set those after the JVM has been created. I think you're going to need to find a way (maybe using

[JETTY PLUGIN]

2007-08-02 Thread João Kreuzberg
Hello Guys, I need to setup some memory config from my maven-jetty plugin. Tried to set MAVEN_OPTS=-Xms1024M -Xmx1024M -XX:PermSize=96M -XX:MaxPermSize=128M but didn't work. The best scenario for me would be configure this within my pom.xml file. Any idea if that is possible? Any solution

jetty plugin from Mavenide

2007-07-31 Thread John Coleman
Hi, Does anyone know how to stop the jetty plugin after staring it using Mavenide please? Hitting the orange X button doesn't seem to do anything. TIA, John Eurobase International Limited and its subsidiaries (Eurobase) are unable to exercise control over the content of information

Re: jetty plugin from Mavenide

2007-07-31 Thread Milos Kleint
the jetty plugin after staring it using Mavenide please? Hitting the orange X button doesn't seem to do anything. TIA, John Eurobase International Limited and its subsidiaries (Eurobase) are unable to exercise control over the content of information in E-Mails. Any views and opinions

RE: jetty plugin from Mavenide

2007-07-31 Thread John Coleman
NetBeans 5.5 Mavenide 2.3 Where do I file a bug pls? Thanks, John -Original Message- From: Milos Kleint [mailto:[EMAIL PROTECTED] Sent: 31 July 2007 14:28 To: Maven Users List Subject: Re: jetty plugin from Mavenide exiting the IDE should help I suppose. That's not a good solution

Re: jetty plugin from Mavenide

2007-07-31 Thread Milos Kleint
Subject: Re: jetty plugin from Mavenide exiting the IDE should help I suppose. That's not a good solution though. Please file a bug against mevenide, I'll take a look what can be done. What version of netbeans/mevenide are you using? Milos On 7/31/07, John Coleman [EMAIL PROTECTED] wrote

  1   2   >