RE: Log file creation

2005-03-24 Thread Deblauwe, Wim
redirect the output to a file: maven jar:compile debug.txt if you need to catch the stderr output as well: maven jar:compile debug.txt 21 regards, Wim P.S.: This is on Windows ofcourse -Original Message- From: GOKULAM Jayaram [mailto:[EMAIL PROTECTED] Sent: donderdag 24 maart 2005

Avoid tests being run twice when deploying

2005-03-24 Thread Deblauwe, Wim
Hi, During the night, I would like to build all my modules. Since a module might depend on a change made in another module during that day, I want to deploy a snapshot version to our server repository. Using the multiproject plugin, I call the following goals: maven clean site jar:deploy This

RE: Multiproject with scatter projects

2005-03-22 Thread Deblauwe, Wim
On Mon, 21 Mar 2005 08:31:55 +0100, Deblauwe, Wim [EMAIL PROTECTED] wrote: You don't need that tree structure. I also have all my modules on the same level. I use the multiproject plugin, but you need to make sure you set the multiproject basedir correctly

Multiple output targets

2005-03-22 Thread Deblauwe, Wim
Hi, we are converting to maven for our whole build process, not only for java modules, but also for dlls. I currently export a .mak file from Visual Studio and call this via a bat file from a custom goal in maven. I also created a custom install/deploy goal: goal

looping over dependencies not working

2005-03-22 Thread Deblauwe, Wim
Hi, does anybody know why this is not working: ant:echo message=${pom.dependencies.getClass()}/ ant:echo message=There are ${size(pom.dependencies)} artifacts for this project/ ant:echo message=list item class: ${pom.dependencies.get(0).getClass()}/ j:forEarch

RE: looping over dependencies not working

2005-03-22 Thread Deblauwe, Wim
, Deblauwe, Wim [EMAIL PROTECTED] wrote: Hi, does anybody know why this is not working: ant:echo message=${pom.dependencies.getClass()}/ ant:echo message=There are ${size(pom.dependencies)} artifacts for this project/ ant:echo message=list item class: ${pom.dependencies.get(0

RE: Multiproject with scatter projects

2005-03-20 Thread Deblauwe, Wim
You don't need that tree structure. I also have all my modules on the same level. I use the multiproject plugin, but you need to make sure you set the multiproject basedir correctly. maven.multiproject.basedir=../relative/upto/basedir/of/all/modules maven.multiproject.includes=**/project.xml

RE: want to compile with different file extenstions.

2005-03-18 Thread Deblauwe, Wim
please only send your question to the list once... -Original Message- From: satish babu [mailto:[EMAIL PROTECTED] Sent: vrijdag 18 maart 2005 9:18 To: users@maven.apache.org Subject: want to compile with different file extenstions. Hi all. In my project some of files consists of .ejb

Changelog plugin with ClearCase

2005-03-17 Thread Deblauwe, Wim
Hi, I'm trying to generate a Changelog report. We are using ClearCase here,so I set the property: maven.changelog.factory=org.apache.maven.clearcaselib.ClearcaseChangeLogFact ory But nothing seems to happen. I added the changelog report to the list of reports. I also tried running

Multiproject plugin

2005-03-17 Thread Deblauwe, Wim
Hi, I'm currently using the maven:reactor directly but I would like to use the multiproject plugin, because it seems more convenient. And I also like a website that gives me an overview of all build modules. However with maven:reactor I had access in the postprocessing to ${reactorProjects} and

RE: Multiproject plugin

2005-03-17 Thread Deblauwe, Wim
: donderdag 17 maart 2005 11:27 To: 'Maven Users List' Subject: RE: Multiproject plugin -Original Message- From: Deblauwe, Wim [mailto:[EMAIL PROTECTED] Sent: jeudi 17 mars 2005 11:24 To: Maven Users List (E-mail) Subject: Multiproject plugin Hi, I'm currently using the maven:reactor

RE: Multiproject plugin

2005-03-17 Thread Deblauwe, Wim
Thanks, this works! -Original Message- From: Nicolas Chalumeau [mailto:[EMAIL PROTECTED] Sent: donderdag 17 maart 2005 11:45 To: Maven Users List Subject: Re: Multiproject plugin You maybe can try something like :

Deploying a custom artifact to the remote repository

2005-03-15 Thread Deblauwe, Wim
Hi, I can deploy a jar file to the remote repository fine using jar:deploy-snapshot. But we also have c modules that output a dll or an exe. How can I deploy those to the remote repository? I have no problem writing some custom ant to do this: goal name=cmodule:build:release:deploy-snapshot

Handling Dependencies

2005-03-15 Thread Deblauwe, Wim
From the new website, under handling dependencies: Note: the version need only contain the word SNAPSHOT - it does not need to equal it exactly. It is traditional to append it to a version to indicate development towards version X. For example, 1.2-SNAPSHOT is the development version between

navigation.xml question

2005-03-15 Thread Deblauwe, Wim
Hi, 2 questions about navigation.xml: 1) When I use this: project name=${pom.artifactId} !-- Page Title -- title${pom.artifactId}/title /project Then the property is not correctly expanded. Is this a known bug or is it not possible to use such properties? 2) What is the

RE: navigation.xml question

2005-03-15 Thread Deblauwe, Wim
2) What is the preferred way to include a link to the pdf version of the documentation (generated using the pdf goal)? How do I get the nice icon like on the maven site (although there seem to be 2 icons there, pointing to the same pdf) The 2 icons are probably because you installed the

RE: New Maven Site is Live

2005-03-14 Thread Deblauwe, Wim
Very nicely done. I see a whole lot of information that I was previously missing. Small problem: http://maven.apache.org/reference/properties-reference.html does not seem to work... regards, Wim -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: dinsdag 15 maart 2005

JDepend and Clover

2005-03-11 Thread Deblauwe, Wim
Hi, when using JDepend and Clover together I got the problem that the generated clover classes are also present in my JDepend report. Is there a way to avoid this? regards, Wim Ing. Wim Deblauwe Software Development Engineer BarcoView - Medical Imaging Systems President Kennedypark

RE: Maven systemscope

2005-03-11 Thread Deblauwe, Wim
[${pom.groupId}.${pom.artifactId}.buildstarted]}/echo /goal Thanks ! Marc-Andre -Original Message- From: Deblauwe, Wim [mailto:[EMAIL PROTECTED] Sent: Thursday, March 10, 2005 9:02 AM To: 'Maven Users List' Subject: RE: Maven systemscope Does not seem to work.. I have

RE: Maven systemscope

2005-03-11 Thread Deblauwe, Wim
} echoTest is true.../echo /j:if echoDone.../echo You'll get: [echo] Should work [echo] Test is true... [echo] Should not... [echo] Done... Steve On Fri, 2005-11-03 at 16:38 +0100, Deblauwe, Wim wrote: nope, it does not print any of the possibilities

RE: reactor postprocessing for failures

2005-03-10 Thread Deblauwe, Wim
this? --- Plugins should be able to set variables in the reactorProject variable, so that in the postProcessing step, these can be read out again. That way, this mail could be very easily created. regards, Wim -Original Message- From: Deblauwe, Wim [mailto:[EMAIL PROTECTED] Sent

Maven systemscope

2005-03-10 Thread Deblauwe, Wim
Hi, I would like to add the following to the systemscope: ${systemScope.setProperty('${pom.groupId}.${pom.artifactId}.buildstarted','t rue')} This does not work, because ${pom.groupId} and ${pom.artifactId} do not expand to their values. I want ofcourse ${pom.groupId} and ${pom.artifactId}

RE: Maven systemscope

2005-03-10 Thread Deblauwe, Wim
(${pom.groupId}.${pom.artifactId}.buildstarted,'t rue')} Regards, Marc-Andre -Original Message- From: Deblauwe, Wim [mailto:[EMAIL PROTECTED] Sent: Thursday, March 10, 2005 8:55 AM To: Maven Users List (E-mail) Subject: Maven systemscope Hi, I would like to add the following

RE: Maven Tasklist plugin/Eclipse's TODO: tags

2005-03-10 Thread Deblauwe, Wim
This would be interesting for IntelliJ users also. IntelliJ IDEA uses the same style. regards, Wim -Original Message- From: Joe Shomphe [mailto:[EMAIL PROTECTED] Sent: donderdag 10 maart 2005 21:51 To: users@maven.apache.org Subject: Maven Tasklist plugin/Eclipse's TODO: tags Has

reactor postprocessing for failures

2005-03-09 Thread Deblauwe, Wim
Hi, I'm searching for some more information on the postprocessing you can do with the reactor. From the documentation: !-- Generate the site for each of the components. -- maven:reactor basedir=${basedir}/components postProcessing=true includes=*/project.xml

RE: Clover history report on website

2005-03-09 Thread Deblauwe, Wim
point in the history graph. regards, Wim -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: woensdag 9 maart 2005 10:14 To: 'Maven Users List' Subject: RE: Clover history report on website -Original Message- From: Deblauwe, Wim [mailto:[EMAIL PROTECTED

RE: skipping snapshot downloads

2005-03-08 Thread Deblauwe, Wim
hmm.. good question.. I could use this also -Original Message- From: Nathan Coast [mailto:[EMAIL PROTECTED] Sent: dinsdag 8 maart 2005 9:25 To: Maven Users Subject: skipping snapshot downloads Hi, apologies - I'm sure I've seen a post about this but can't find it in mail-archive. Is

RE: [ANN] Maven Clover Plugin 1.8 released

2005-03-08 Thread Deblauwe, Wim
Is it possible to set the maven.clover.history.dir property as an absolute directory? I would like it to point to a directory on the server, so I can keep my history points, but it seems to resolve relatively to the ${basedir}. regards, Wim On Fri, 4 Mar 2005 22:02:54 +0100, Vincent Massol

RE: string replace

2005-03-08 Thread Deblauwe, Wim
You can do this easily in ant: http://ant.apache.org/manual/CoreTasks/replace.html regards, Wim -Original Message- From: Arto Pastinen [mailto:[EMAIL PROTECTED] Sent: woensdag 9 maart 2005 8:16 To: users@maven.apache.org Subject: string replace Hi! Is there some plugin to replace

RE: [ANN] Maven Clover Plugin 1.8 released

2005-03-08 Thread Deblauwe, Wim
maart 2005 19:19 To: 'Maven Users List' Subject: RE: [ANN] Maven Clover Plugin 1.8 released Hi Wim, -Original Message- From: Deblauwe, Wim [mailto:[EMAIL PROTECTED] Sent: mardi 8 mars 2005 18:10 To: 'Maven Users List' Subject: RE: [ANN] Maven Clover Plugin 1.8 released Is it possible

javadoc links

2005-03-08 Thread Deblauwe, Wim
Hi, I tried to file a bug on jira, but I can't seem to get logged in... When using the javadoc links feature, you need to set special options to get past a proxy server. Why doesn't the plugin take the values you already need to define to get to the remote repository? I have for instance the

RE: string replace

2005-03-08 Thread Deblauwe, Wim
be different file. That xml file is only template for final.. Any hints?!? - Artsi On Wed, 2005-03-09 at 09:28 +0200, Arto Pastinen wrote: Yes, that is what i was searching.. Thank you Wim! On Wed, 2005-03-09 at 08:27 +0100, Deblauwe, Wim wrote: You can do this easily in ant: http

Update all maven plugins?

2005-03-07 Thread Deblauwe, Wim
Hi, is it possible to update all the maven plugins to the latest versions available with 1 command? This would be a very useful thing to be able to do after you install Maven. That way, you are sure to have the latest versions of everything. regards, Wim Ing. Wim Deblauwe Software

RE: Update all maven plugins?

2005-03-07 Thread Deblauwe, Wim
. Emmanuel Deblauwe, Wim said: Hi, is it possible to update all the maven plugins to the latest versions available with 1 command? This would be a very useful thing to be able to do after you install Maven. That way, you are sure to have the latest versions of everything. regards, Wim Ing

RE: Setting up internal repository

2005-03-07 Thread Deblauwe, Wim
You can use UNC path names using 4 slahes: file:myserver/myshare regards, Wim PS: Does anybody know why FireFox requires 5 slahes, like file:/myserver/myshare ? -Original Message- From: Nicolas De Loof [mailto:[EMAIL PROTECTED] Sent: maandag 7 maart 2005 14:47 To: Maven Users

RE: artifacts that shall not have version information in the name

2005-03-06 Thread Deblauwe, Wim
What I do, is using a directory with the version number in: dependency groupIdsomeDllWeUse/groupId artifactIdsomeDllWeUse.dll/artifactId version2.0.1/version

How can I enable extended logging of Maven?

2005-03-04 Thread Deblauwe, Wim
Hi, I'm using the maven:reactor tag to make a nightly build of all my projects. However, sometimes maven continues with the next subproject without being completely finished with the subproject he is building. How can I get more info on why he is doing this? Is there some kind of logging that

RE: Clover plugin making tests running twice

2005-03-04 Thread Deblauwe, Wim
running twice -Original Message- From: Deblauwe, Wim [mailto:[EMAIL PROTECTED] Sent: jeudi 3 mars 2005 18:00 To: 'users@maven.apache.org' Subject: Clover plugin making tests running twice Hi, I am using the clover plugin, but when I do my tests are being run twice. Once just

Clover plugin making tests running twice

2005-03-03 Thread Deblauwe, Wim
Hi, I am using the clover plugin, but when I do my tests are being run twice. Once just normally, and once instrumented by Clover. Any idea on how I can avoid this? regards, Wim Ing. Wim Deblauwe Software Development Engineer BarcoView - Medical Imaging Systems President