Copying dependencies

2004-05-06 Thread Jesper Linvald
Hello all, I need to copy all dependencies specified in my pom to a special directory before deployment - I cant use the ear task since I need a custom directory layout. Is there a way to do this with a plugin or do I need to script it? Regards Jesper Linvald

Re: Copying dependencies

2004-05-06 Thread Jens Riboe
You can use this Ant task http://www.ribomation.com/riboutils/DependencyList/ Cheers /jens Jesper Linvald wrote: Hello all, I need to copy all dependencies specified in my pom to a special directory before deployment - I cant use the ear task since I need a custom directory layout. Is

jelly:xml question

2004-05-06 Thread Wim Lambrecht
Hi, I want to use the x:set tag, but i have a problem with the select= part, more specifically when i want to use a string-variable there. 1) When i hard-code my xpath-expression, everything works fine ($reconfigdoc is a DOM object constructed via the x:parse-tag. No problem there since i get

Re: jelly:xml question

2004-05-06 Thread Wim Lambrecht
Sorry, The second !-- OK -- should be !-- NOT OK -- of course. Problem stays the same -wil- Hi, I want to use the x:set tag, but i have a problem with the select= part, more specifically when i want to use a string-variable there. 1) When i hard-code my xpath-expression, everything

RE: Copying dependencies

2004-05-06 Thread Arnaud Heritier
http://maven.apache.org/reference/user-guide.html#Copying_Dependency_JARs Arnaud -Message d'origine- De : Jesper Linvald [mailto:[EMAIL PROTECTED] Envoyé : jeudi 6 mai 2004 09:37 À : [EMAIL PROTECTED] Objet : Copying dependencies Hello all, I need to copy all dependencies

Re: Deploy JNLP

2004-05-06 Thread Anthony Vito
In that example ant in ant:mkdir in a namespace. I didn't include the top of my maven.xml file which goes like this. project default=java:compile xmlns:ant=jelly:ant xmlns:j=jelly:core xmlns:util=jelly:util What those xmlns lines do are bind libraries to specific namespaces.

RE: jelly:xml question

2004-05-06 Thread KRÁLIK Vladimír
Maybe it's this bug in dom4j : http://sourceforge.net/tracker/index.php?func=detailaid=787428group_id=16035atid=116035 It was fixed only in CVS : http://cvs.sourceforge.net/viewcvs.py/dom4j/dom4j/src/java/org/dom4j/tree/AbstractProcessingInstruction.java vlk -Original

Deploy Que

2004-05-06 Thread Raphael Philipe Mendes da Silva
I have some questions about the deploy process. I have diferent directories the site and the repository, there are some way to deploy both without changing the project.xml? Raphael Philipe Mendes da Silva DSB - Diretoria de Soluções em Billing CPqD Telecom IT Solutions Tel.: +55 19 3705-6957

RE: Deploy Que

2004-05-06 Thread KRÁLIK Vladimír
project.xml is jelly-script, so you can use ${my.deploy.site} and ${my.deploy.repository.dir} in it. And this properties can be set in project.propertie/build.propeties and from command line as maven agument ( -D ). vlk -Original Message- From: Raphael Philipe Mendes

Using reactor to generate navigation.xml

2004-05-06 Thread Nigel Magnay
Is there any example of using the reactor to auto-generate a navigation.xml to subprojects ? I have j:forEach var=reactorProject items=${reactorProjects} echo${reactorProject.artifactId}/echo /j:forEach But I haven't looked at how to write out the navigation.xml file so I was

RE: jelly:xml question

2004-05-06 Thread W. Sean Hennessy
eliminate the dot from the variable name $file-name instead of $file.name? -Original Message- From: Wim Lambrecht [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 12:51 AM To: [EMAIL PROTECTED] Subject: Re: jelly:xml question Sorry, The second !-- OK -- should be !-- NOT OK --

Re: Using reactor to generate navigation.xml

2004-05-06 Thread Emmanuel Venisse
You can use the multiproject plugin, it's more simple. Emmanuel - Original Message - From: Nigel Magnay [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 06, 2004 6:02 PM Subject: Using reactor to generate navigation.xml Is there any example of using the reactor to

RE: Using reactor to generate navigation.xml

2004-05-06 Thread Arnaud Heritier
The multiproject plugin does this. It generates an entry for each subproject Arnaud -Message d'origine- De : Nigel Magnay [mailto:[EMAIL PROTECTED] Envoyé : jeudi 6 mai 2004 18:02 À : [EMAIL PROTECTED] Objet : Using reactor to generate navigation.xml Is there any example of

maven-proxy behind apache webserver

2004-05-06 Thread Dominik Dahlem
Hi all, I am wondering whether it is possible to have the maven-proxy behind an apache webserver? If so, how do I configure apache? An alternative would be to have an .war file so that I can deploy it into tomcat. However, the maven wiki states that the web application is not completed yet. I'd

RE: Javadoc for multiple source directories

2004-05-06 Thread Yoway . Buorn
You know, I didn't have the package specified when I ran it earlier, but even after specifying the package, Maven would give me the same error. I do, however, have multiple packages throughout the pathelements so I'm not sure what to choose as the package. Also, are there some instructions some

include tag in maven.xml

2004-05-06 Thread James . Shute
Quick question: If I've got a maven.xml that looks like this: project !-- contains definition of foo goal include file=../maven.xml / goal name=bar attainGoal name=foo / /goal /project When I execute it works as expected, but this gets printed in

Log| e-mail

2004-05-06 Thread Raphael Philipe Mendes da Silva
Hi, have in maven some way to when a build fails, it sends a e-mail to the project's developers? Raphael Philipe Mendes da Silva DSB - Diretoria de Soluções em Billing CPqD Telecom IT Solutions Tel.: +55 19 3705-6957 www.cpqd.com.br [EMAIL PROTECTED]

[dashboard] newbie: how to get it to work?

2004-05-06 Thread Darren Hartford
Hey all, Been using Maven a while, but new to dashboard-plugin :-) I tried to follow the instructions given at: http://maven.apache.org/reference/plugins/dashboard/properties.html Attempt on 1.0-rc2 binary install, and with bootstrap install as of 5/6/04. Attempts made with a multi-project, and

Javadoc

2004-05-06 Thread Raphael Philipe Mendes da Silva
Why when i run a maven javadoc:install maven generates a jar in the root directory? There are some way to put this jar in another place? There are some property that do this? Thanks for all Raphael Philipe Mendes da Silva DSB - Diretoria de Soluções em Billing CPqD Telecom IT Solutions

jboss plugin

2004-05-06 Thread Pablo Lalloni
I'm trying to get the deploy* targets of this plugin working with no luck so far... JBoss/Tomcat answers with a 505 HTTP error... Have you seen this behaviour before? I'm using Maven 1.0-rc2 against JBoss 3.2.3 with Tomcat listening on port 8080. I thought of replacing the ant:get/ tags in

RE: Javadoc

2004-05-06 Thread Arnaud Heritier
By default the jar is created in: ${maven.war.build.dir} If it is possible for you, you can modify it. Otherwise you can create a postGoal to move the jar. Arnaud. -Message d'origine- De : Raphael Philipe Mendes da Silva [mailto:[EMAIL PROTECTED] Envoyé : jeudi 6 mai 2004 21:08 À 

Re: Log| e-mail

2004-05-06 Thread Pascal THIVENT
Hi, this thread will perhaps help you : http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED]by=threadfrom=668458 From my point of view, sending mail when a build fails should be under the responsibility of a continuous integration tool, amongst other things like scheduling the extraction of

Re: Javadoc

2004-05-06 Thread dion_gillard
I believe this is a bug in the javadoc:jar goal: goal name=javadoc:jar prereqs=javadoc j:set var=maven.javadoc.final.name value=${maven.war.build.dir}/${maven.final.name}_javadoc.jar / ant:jar destfile=${maven.javadoc.final.name}

RE: Javadoc

2004-05-06 Thread Brett Porter
Don't you love copy-and-paste? :) I'm guessing it should be maven.build.dir -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, 7 May 2004 12:10 PM To: Maven Users List Subject: Re: Javadoc I believe this is a bug in the javadoc:jar goal:

Re: Javadoc

2004-05-06 Thread dion_gillard
I'll fix that one. -- dIon Gillard, Multitask Consulting [EMAIL PROTECTED] wrote on 07/05/2004 12:10:15 PM: I believe this is a bug in the javadoc:jar goal: goal name=javadoc:jar prereqs=javadoc j:set var=maven.javadoc.final.name