Re: wtp 0.7 layout and maven layout

2006-01-06 Thread Eric Jacob
See also: http://mail-archives.apache.org/mod_mbox/maven-users/200505.mbox/[EMAIL PROTECTED] HTH Eric On 1/6/06, Eric Jacob <[EMAIL PROTECTED]> wrote: > > Need to add configuration for the parameter warSourceDirectory in War > plugin. > > http://maven.apache.org/plugins

Re: wtp 0.7 layout and maven layout

2006-01-06 Thread Eric Jacob
Need to add configuration for the parameter warSourceDirectory in War plugin. http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html Eric On 1/6/06, Tom Joad <[EMAIL PROTECTED]> wrote: > > Hello all and I wish happy new year for all of us, > > I use the maven webapp archetype to create

Re: How to disable transitive dependency?

2005-11-21 Thread Eric Jacob
The problem is that the pom can be improved to add some of them as > optional. > I'll solve that when solving http://jira.codehaus.org/browse/MEV-161. > > On 11/21/05, Eric Jacob <[EMAIL PROTECTED]> wrote: > > If you want to use all the Acegi's features, sure you nee

Re: How to disable transitive dependency?

2005-11-21 Thread Eric Jacob
ed them. > > Are you sure you don't need these? If so, consider using your own > repository before ibiblio and strip these of their dependencies. > > On 11/21/05, Eric Jacob < [EMAIL PROTECTED]> wrote: > > Hi John, > > > > Thanks for your suggestion. It

Re: How to disable transitive dependency?

2005-11-21 Thread Eric Jacob
ed as well. You can easily do this > if you copy those dependencies from the artifact's pom and paste it to > your exclusions. A find and replace for "dependency" to "exclusion" > within your copied text won't take that much time. > > Hope this helps. &g

Re: [M2] List of available Archetypes

2005-11-18 Thread Eric Jacob
http://svn.apache.org/viewcvs.cgi/maven/archetype/trunk/maven-archetypes/ HTH Eric On 11/18/05, Mayorgaadame, Alex [IT] <[EMAIL PROTECTED]> wrote: > > Hello all, > > This may be an easy one, but I've lost track of maven lately. > > Anyone can tell me the archetypes that are still valid for Maven

Re: How to disable transitive dependency?

2005-11-18 Thread Eric Jacob
But what about acegi-security-0.9.0.jar? I need it in my webapp. Thanks. Eric On 11/18/05, Pablo <[EMAIL PROTECTED]> wrote: > > Eric Jacob wrote: > > >Hi, > > > >Putting the following dependency results in 72 jars downloaded in > >WEB-INF/lib! > > &g

How to disable transitive dependency?

2005-11-18 Thread Eric Jacob
Hi, Putting the following dependency results in 72 jars downloaded in WEB-INF/lib! acegisecurity acegi-security 0.9.0 runtime Of course, I can exclude unecessary dependencies, but it's a real pain. A better solution would be to disable transitive dependencies all together. Is it supported? Th

Re: [m2] Archetype Plugin parameters and templates

2005-09-27 Thread Eric Jacob
a-3 Is it possible to provide a sample or a link to a velocity template on the online source repository? Thank you in advance, Eric On 9/27/05, Jason van Zyl <[EMAIL PROTECTED]> wrote: > > On Mon, 2005-09-26 at 21:49 -0400, Eric Jacob wrote: > > Hi, > > > > The M1

[m2] Archetype Plugin parameters and templates

2005-09-26 Thread Eric Jacob
Hi, The M1 Genapp plugin offers the possibility to define custom parameters and templates... So here my questions about the M2 Archetype plugin: (1) Does it offer the same possibilities? (2) Is it possible to prompt the user for the parameter's value? (3) Where should I start to build my own temp

Re: [m2] Archetype Plugin problem generating Mojo type project (beta-1)

2005-09-25 Thread Eric Jacob
Brett Porter wrote: Yes. Can you file it in JIRA? Thanks, Brett On 9/26/05, Eric Jacob <[EMAIL PROTECTED]> wrote: Hi, I created a plugin skeleton using the following command: m2 archetype:create -DgroupId=com.mycompany.app -DartifactId=my-plugin -DarchetypeArtifactId=maven-arc

[m2] Archetype Plugin problem generating Mojo type project (beta-1)

2005-09-25 Thread Eric Jacob
Hi, I created a plugin skeleton using the following command: m2 archetype:create -DgroupId=com.mycompany.app -DartifactId=my-plugin -DarchetypeArtifactId=maven-archetype-mojo When I try to install the plugin, M2 gives me this error: $ m2 install [INFO] -

RE: BUG - replacetoken ant tag

2005-03-30 Thread eric . jacob
Thanks Brett and Vincent, but my replacetoken string isn't empty... I'll look on the Ant mailing list to see if I can find more information on that. Eric > -Original Message- > From: Vincent Massol [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 30, 2005 1:47 AM > To: 'Maven Users Lis

BUG - replacetoken ant tag

2005-03-29 Thread eric . jacob
Hi, I've fall on this issue with the "ant:replace" task within Maven (jelly script) during my plug-in development: "The token attribute must not be an empty string." It seems that Maven deletes the content of the "replacetoken" before the execution of Ant. I've found an open bug on JIRA re

RE: Add dependencies via plugin.jelly

2005-03-08 Thread eric . jacob
Thanks for the reply. I'm writing a template for the Maven Genapp Plug-in and I would like to add some dependencies into the POM file depending on the user choices. An example of that would be the possibility for the user to choose the database he wants to use. If he chooses MySQL for example, I w

Add dependencies via plugin.jelly

2005-03-08 Thread eric . jacob
Hi all, This is my third attempt on the subject and I'll try to make my question clearer (and the mail's title). I'm currently developing a plug-in and I want to know if it's possible to add a dependency to the project.xml using the plugin.jelly file? Thanks in advance, Eric

Genapp Plug-in - Adding dependencies to project.xml

2005-03-07 Thread eric . jacob
Hi, I'm writing a template for the Maven Genapp Plug-in and I would like to know if it's possible to add some dependencies into the POM file depending on the user choices. An example of that would be the possibility for the user to choose the database he want to use. If he chooses MySQL for exa

Genapp Plug-in - Add dependencies to project.xml

2005-02-22 Thread eric . jacob
Hi, I use the Genapp Plug-in to generate a project from a custom template. I've defined a new parameter that asks the user to enter the database he wants to use (currently, only mysql and hsqldb are supported). If the user chooses mysql for example, I would like to add the mysql connector j

RE: maven proxy as a WAR

2004-12-20 Thread eric . jacob
Hi Nicolas, There is a good Java service wrapper out there. http://wrapper.tanukisoftware.org/doc/english/introduction.html It allows you to run your application (in this case maven-proxy) as a Windows service. I use it and it works pretty well. I can send you my conf file if you wish. Hope thi