Re: svn commit: r408735 - /maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/DefaultMaven.java

2006-05-23 Thread Carlos Sanchez
Trygve, now the project doesn't compile anymore. On 5/22/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Author: trygvis Date: Mon May 22 13:04:33 2006 New Revision: 408735 URL: http://svn.apache.org/viewvc?rev=408735&view=rev Log: Merging 408734 o Only set the local repository if it's missing

Ant Task issues MNG-2304 and MNG-1542

2006-05-23 Thread jmaxwell
Last week add MNG-2304 with a (possible) patch and and a comment with a possible fix for MNG-1542. I was wondering if anyone had a chance to review these issues. Cheers, Jeff -- View this message in context: http://www.nabble.com/Ant+Task+issues+MNG-2304+and+MNG-1542-t1670057.html#a4526508 Sen

Re: Assembly and DependencySets (Re: assemply and packaging)

2006-05-23 Thread Carsten Karkola
Sorry, I will try to split my questions between dev concerns and user related questions. Thank you for your hint with the correct include-format. Beside that I solved my problems with the dependency-maven-plugin as suggested on this list. regards, carsten On 23 May 2006 at 11:01, John Casey wro

Re: Ant plugin and dependencies

2006-05-23 Thread Wayne Fay
If you forward this email to the Maven Users list, we'd be glad to help you there. But this list is strictly for discussing development of the Maven tool itself. Wayne On 5/23/06, Carsten Karkola <[EMAIL PROTECTED]> wrote: We moving a project from ant to mvn - so I have to replace ant tasks by

RE: How can I add different source-directories to a project maven2?

2006-05-23 Thread Roald Bankras
Create three modules Roald Bankras Software Engineer JTeam b.v. -Original Message- From: karim33 [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 23, 2006 4:31 PM To: dev@maven.apache.org Subject: How can I add different source-directories to a project maven2? hi, i try to build a jar fil

Re: Assembly and DependencySets (Re: assemply and packaging)

2006-05-23 Thread John Casey
This is definitely a thread for the users' list, not the dev list. Having said that, the assembly plugin doesn't currently support wildcards in the dependencySet includes/excludes, for one thing. For another, those includes and excludes (in the dependencySet) are meant to refer to the artifacts b

How can I add different source-directories to a project maven2?

2006-05-23 Thread karim33
hi, i try to build a jar file with maven2 with 3 source directory but in maven 2 i don't know haw we do this in pom.xml we have ${src_dir} i have 3 sources to integrate for compilation: ${src_dir}/src/**/*.java ${src_dir}/ejb/**/common/**/*.java {src_dir}/ejb/common/**/*.java can you help me

AW: retrieving path in local repository from within a plugin

2006-05-23 Thread Detlef Pleiss
thanks, Kenney and Brian, I got it to work. Mit freundlichen Grüßen i.A. Detlef Pleiß Mit einem Klick alles im Blick, dank Informatik Partner im Wissenschaftsjahr 2006 – http://www.informatikjahr.de

Re: Assembly and DependencySets (Re: assemply and packaging)

2006-05-23 Thread Tim Kettler
I have not used the assembly plugin further than creating a 'jar-with-dependencies'. You should move this thread to the users list. The audience that can help is probably greater there than on the dev list. -Tim Carsten Karkola schrieb: What I tried to do is, to filter dependencies and unpack

RE: retrieving path in local repository from within a plugin

2006-05-23 Thread Brian E. Fox
You can do exactly what you want with the dependency-maven-plugin. The docs are down on codehaus right now, but following is the .apt for the plugin: -- Maven 2 dependency Plugin -- How to use Brief examples on how to use the dependency goals. * Generic Plugin configuration informa

FW: Maven Archetypes

2006-05-23 Thread hermod.opstvedt
Hi Reposting it here, since no takers on the user list: I am working on an archetype that is going to set up a special development environment, and I have the following question: Is it possible to specify an execution entry for archetypes. What I mean is that I want an Ant script or maybe a Mo

Ant plugin and dependencies

2006-05-23 Thread Carsten Karkola
We moving a project from ant to mvn - so I have to replace ant tasks by maven plugins. My problem: - plugin for start/stop Bea Weblogic and /deploy/undeploy a previously built EAR that gets installed in the local repo - I decided to use an Ant plugin with goals like wls:start wls:deploy, ... N

Assembly and DependencySets (Re: assemply and packaging)

2006-05-23 Thread Carsten Karkola
What I tried to do is, to filter dependencies and unpack some of them, simply copy others to some dirs, like: 1. two dependencies with type zip /lib true runtime *.zip 2. a jar / false runtime my