Re: detect the current phase

2007-10-01 Thread Jason van Zyl
On 1 Oct 07, at 11:02 PM 1 Oct 07, Jerome Lacoste wrote: someone knows if this possible ? Not possible. J -- Forwarded message -- From: Jerome Lacoste <[EMAIL PROTECTED]> Date: Sep 29, 2007 11:18 PM Subject: detect the current phase To: [EMAIL PROTECTED] Hei, is there

Fwd: detect the current phase

2007-10-01 Thread Jerome Lacoste
someone knows if this possible ? J -- Forwarded message -- From: Jerome Lacoste <[EMAIL PROTECTED]> Date: Sep 29, 2007 11:18 PM Subject: detect the current phase To: [EMAIL PROTECTED] Hei, is there a way to detect the phase a plugin is being executed in ? This is to fix http:/

Re: any war plugin hack ?

2007-10-01 Thread nicolas de loof
Thanks for those ideas. 2007/10/1, Brian E. Fox <[EMAIL PROTECTED]>: > > Or just use the dependency plugin to unpack the just-created-war. Not > optimal but neither is creating it twice. > > -Original Message- > From: Adam Altemus [mailto:[EMAIL PROTECTED] > Sent: Monday, October 01, 200

RE: any war plugin hack ?

2007-10-01 Thread Brian E. Fox
Or just use the dependency plugin to unpack the just-created-war. Not optimal but neither is creating it twice. -Original Message- From: Adam Altemus [mailto:[EMAIL PROTECTED] Sent: Monday, October 01, 2007 4:57 PM To: Maven Developers List Subject: Re: any war plugin hack ? In the maven

Re: any war plugin hack ?

2007-10-01 Thread Adam Altemus
In the maven-js-plugin, we process the exploded web-app that gets built along side the WAR and either re-create the WAR or create a second one based on user preferences. It might work for what you need. On 10/1/07, nicolas de loof <[EMAIL PROTECTED]> wrote: > > I agree, I was just meaning "I can

RE: site skin

2007-10-01 Thread Brian E. Fox
Yes. It was in fact the maven site I was trying to change. I changed the stylus skin and installed a snapshot and updated the site.xml. All the -X logs from velocity only mention the default-site.vm, not my site.vm. -Original Message- From: Paul Gier [mailto:[EMAIL PROTECTED] Sent: Monday

Re: any war plugin hack ?

2007-10-01 Thread nicolas de loof
I agree, I was just meaning "I can wait maven 2.1 to introduce the pre-package pahse, AND the war plugin to honor this new phase" 2007/10/1, Brian E. Fox <[EMAIL PROTECTED]>: > > None that I know of, and I don't think the 2.1 will change this. The war > plugin is the code doing all the work to pul

RE: any war plugin hack ?

2007-10-01 Thread Brian E. Fox
None that I know of, and I don't think the 2.1 will change this. The war plugin is the code doing all the work to pull things together. So unless the war plugin was broken into two separate mojos, it would still have the effect of being a single black box. -Original Message- From: nicolas

any war plugin hack ?

2007-10-01 Thread nicolas de loof
Hello, is there any way to process the explosed webapp before it gets packaged into a .war ? I could wait for maven 2.1 and the pre-package phase, but I need a solution now... There seems not to be an official way to hook into the war plugin, but maybe some "at your own risk" hack is possible ?

Re: site skin

2007-10-01 Thread Paul Gier
It worked ok for me when I tried it a while back. Did you add the skin config to your project's site.xml? ... org.apache.maven.skins maven-classic-skin 1.0 ... Brian E. Fox wrote: I followed the instructions here: http://maven.apache.org/plugins/maven-site-plugin/examp

Re: An Experiment with GIT

2007-10-01 Thread Jason van Zyl
Ok, everything seemed have loaded over night. I'll now work on publishing and setting up webgit. On 1 Oct 07, at 4:23 AM 1 Oct 07, Mauro Talevi wrote: Jason van Zyl wrote: On 30 Sep 07, at 12:23 PM 30 Sep 07, Mauro Talevi wrote: This is a comparison with SVN I've found on the Git site: h

Re: [resolved] maven extension : adding a custom ArtifactHandler

2007-10-01 Thread Shane Isbell
This artifact handler bug has proven a problem for me as well. Maven does pick up and maintain the handlers from the components.xml file; it just doesn't add them to the ArtifactHandlerManager, making the handlers inaccessible to the ArtifactFactory, which creates the respective artifacts. If you n

Re: [discuss] Graduate Continuum to its own TLP

2007-10-01 Thread Mauro Talevi
Jesse McConnell wrote: I actually would prefer to have an increased focus on maven and maven2 integration. tbh there are many different continuous integration servers and the ties with maven could be increased some more and leverage some really nice features in maven. I don't really think conti

CONTINUUM-310 - customizable email templates

2007-10-01 Thread Tomislav Stojcevich
This was marked closed, should it have been? I still see no way of allowing the user to customize the content of the email body. Right now the velocity templates are part of the continuum-core project and are buried inside the core.jar so it's not easy for the users to edit the template. What do

Re: An Experiment with GIT

2007-10-01 Thread Mauro Talevi
Jason van Zyl wrote: On 30 Sep 07, at 12:23 PM 30 Sep 07, Mauro Talevi wrote: This is a comparison with SVN I've found on the Git site: http://git.or.cz/gitwiki/GitSvnComparsion But one of the main issues IMO is the integration with IDEs - it took quite a long time for SVN to catch up to C

Re: [resolved] maven extension : adding a custom ArtifactHandler

2007-10-01 Thread Arnaud HERITIER
I had this problem (It's a bug and also a problem in the conception of the core) and I solved it like this : package com.octo.mtg.plugin; import java.io.File; import org.apache.maven.artifact.handler.ArtifactHandler; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.

[resolved] maven extension : adding a custom ArtifactHandler

2007-10-01 Thread nicolas de loof
I just understood I have to configure the plugin in the build/plugins element with true What's the meaning of the build/extensions element ? 2007/10/1, nicolas de loof <[EMAIL PROTECTED]>: > Hello, > > I'd like to add support in maven for a custom packaging. > I've created a META-INF/plexus/compo

maven extension : adding a custom ArtifactHandler

2007-10-01 Thread nicolas de loof
Hello, I'd like to add support in maven for a custom packaging. I've created a META-INF/plexus/components.xml to define a new ArtifactHandler : org.apache.maven.artifact.handler.ArtifactHandler javascript org.apache.maven.artifact.handler.DefaultArtifactHandler