Re: server?

2003-11-18 Thread dion
The main apache web server is down. maven.apache.org is hosted on it.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/



"khote" <[EMAIL PROTECTED]> wrote on 19/11/2003 04:31:00 PM:

> So what's happened to maven.apache.org?  It doesn't seem to be alive
> anymore, at least out here in southern California.
> 
> Kevin
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Subversion changelog

2003-11-18 Thread dion
Mikael Lundgren <[EMAIL PROTECTED]> wrote on 19/11/2003 05:47:28 
AM:

> Hi,
> 
> I'm trying to get Maven to generate changelog reports based on the 
> contents of a Subversion repository, however all I get is empty reports.
> 
> I have found the following information and applied it:
> 
> - I have installed Apache 2.0.48, Subversion 0.33, Java 1.4.2_02, Maven 
> 1.0rc1
> - I have created a build.properties file
> - I have set the maven.changelog.range to the empty string
> - I have set the maven.changelog.factory= 
> org.apache.maven.svnlib.SvnChangeLogFactory
> - I can run svn log -h from the command prompt in the directory where I 
> run "maven site" and the log file shows up as expected (it is not empty)
> - I have set 
> http://127.0.0.1/repos/leanon/leif/trunk in the 

> repository portion of project.xml, I have also tested the url to 
> actually point to the right place, not that it seems to matter much...

The connection string is incorrect. It ALWAYS starts with 'scm' followed 
by a delimiter and then the scm type, so yours should start with
'scm:svn:' where ':' is the delimiter. But I don't think it is used.

> Here is what I get (I only include what I find to be the relevant 
output):
> 
> site:run-reports:
>  [echo] Generating the Change Log...
> maven-changelog-plugin:report:
>  [echo] Generating the changelog report
> SCM Working Directory: C:\ttt\leanon\leif\trunk
> SCM Command Line[0]: svn
> SCM Command Line[1]: log
> SCM Command Line[2]: -v
> ChangeLog found: 0 entries
> 
> That last line... "0 entries" worries me...

What happens when you run

svn log -v

in

C:\ttt\leanon\leif\trunk
?

> I checked the bug tracking system but all I could find was a mention of 
> a problem that seems unrelated - and should be fixed by the range 
> property mentioned above.
> 
> Anyone with any pointer? Is this even supposed to work at all?
Yes, it should work.

Better error messages would be nice too :-)
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Subversion changelog

2003-11-18 Thread dion
Heiko Kundlacz <[EMAIL PROTECTED]> wrote on 19/11/2003 07:12:28 
AM:

> As I know Subversion isn't support. If you want to use subversion you 
> should write your own plugin based on:
> 
> http://jsvn.alternatecomputing.com/
> 
> They provide an ant task you can implement. I tried out the checkout 
> command and it works.
> 
> Heiko
> 
> Mikael Lundgren wrote:
> 
FWIW, SubVersion is supported by the scm reporting plugins.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Muliproject example

2003-11-18 Thread dion
Les, 

what's your issue?

I have an large set of projects that use multiproject:install-snapshot all 
the time.

Could you provide some detail on what the hassle is?
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/



Lester Ward <[EMAIL PROTECTED]> wrote on 19/11/2003 06:58:39 AM:

> Can anyone provide me with a non-trivial example of using of
> multiproject:install that actually works? By "non-trivial", I mean one 
where
> one subproject requires another.
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: "-D" params with spaces are parsed into goals on unix

2003-11-18 Thread dion
Martin Skopp <[EMAIL PROTECTED]> wrote on 19/11/2003 04:20:35 AM:

> Sorry being late, dion, I was a few days offline...
> 
> On Tue, 2003-11-18 at 14:59, [EMAIL PROTECTED] wrote:
> > What happens when you use
> > 
> >  maven '-Dmyname=billy bob'
> > 
> > or 
> > 
> >  maven "-Dmyname=billy bob"
> 
> Should work fine!  " is converted into ' anyway (after shell expansion
> inside the double quotes).
> 
> Here's proove, I removed the error messages since the x_... command does
> not exist:
> 
> [EMAIL PROTECTED] bin]$ cat test_shell.sh
> #!/bin/sh -x
> x_with "$@"
> x_without $@
> 
> 
> [EMAIL PROTECTED] bin]$ ./test_shell.sh Para1 "-Dmyname=billy bob" Para3
> + x_with Para1 '-Dmyname=billy bob' Para3
> + x_without Para1 -Dmyname=billy bob Para3
> 
> [EMAIL PROTECTED] bin]$ ./test_shell.sh Para1 '-Dmyname=billy bob' Para3
> + x_with Para1 '-Dmyname=billy bob' Para3
> + x_without Para1 -Dmyname=billy bob Para3
> 
> 
> Will you fix it dion, or do want me to create a JIRA issue?
We had one before about this:

http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-786

But from memory, the 'fix' broke 'sh' or cygwin or something.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: server?

2003-11-18 Thread khote
I can still get sourceforge for XDoclet, hibernate, ibiblio.org,
java.sun.com, but Ant, Maven -- it looks like apache.org is just gone, can't
see the cvs server, can't even ping it.



- Original Message - 
From: "Craig S. Cottingham" <[EMAIL PROTECTED]>
To: "khote" <[EMAIL PROTECTED]>
Cc: "Maven Users List" <[EMAIL PROTECTED]>
Sent: Tuesday, November 18, 2003 9:40 PM
Subject: Re: server?


> On Tue, 2003-11-18 at 23:31, khote wrote:
> > So what's happened to maven.apache.org?  It doesn't seem to be alive
> > anymore, at least out here in southern California.
>
> The Internet seems to be having a bad day. My connection went out
> earlier today, and after spending the afternoon working on it, only part
> of it was visible here in Kansas City. I suspect something big and ugly
> happened to somebody's router tables somewhere in the middle.
>
> -- 
> Craig S. Cottingham
> [EMAIL PROTECTED]
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: server?

2003-11-18 Thread Craig S. Cottingham
On Tue, 2003-11-18 at 23:31, khote wrote:
> So what's happened to maven.apache.org?  It doesn't seem to be alive
> anymore, at least out here in southern California.

The Internet seems to be having a bad day. My connection went out
earlier today, and after spending the afternoon working on it, only part
of it was visible here in Kansas City. I suspect something big and ugly
happened to somebody's router tables somewhere in the middle.

-- 
Craig S. Cottingham
[EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



server?

2003-11-18 Thread khote
So what's happened to maven.apache.org?  It doesn't seem to be alive
anymore, at least out here in southern California.

Kevin


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Javadocs in a new window

2003-11-18 Thread Sri Sankaran
Is it possible to codify the Javadocs link (of a Maven-generated site) to display the 
docs in a new window (or Mozilla tab)?  I realize that I can manually do this using 
the context menu.  I would like a new window to be the default action - say, based on 
some property setting.  

The rationale is that the navigation through Javadocs is independent of the rest of 
the project site.  Currently, if I select the Javadoc link and then peruse various 
packages and/or classes therein, it is onerous to find my way back to the project web 
site.

Similar behavior for Source Xref would be nice as well.

Sri

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Javadoc Cross Reference

2003-11-18 Thread Alain Javier Guarnieri del Gesu
The Javadoc for my project does not contain cross-reference links to
classes and interfaces in the same project. Source XRef works fine.

Any ideas on where to look for clues?

-- 
Alain Javier Guarnieri del Gesu - [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Unable to download the initial jar files

2003-11-18 Thread enghoe
I am a new Maven user and I had downloaded the Maven 1.0 rc1 for testing.
However, the moment I tried to compile my project, I hit the problem of
unable to download those jar files which Maven needed.

The following is the error message I got:

2003-11-19 09:43:25,069 INFO  org.apache.maven.verifier.DependencyVerifier
- Attempting to download ant-1.5.3-1.jar.
2003-11-19 09:43:47,035 WARN  org.apache.maven.verifier.DependencyVerifier
- Error retrieving artifact from
[http://www.ibiblio.org/maven/ant/jars/ant-1.5.3-1.jar]:
java.lang.Exception: Can't get ant-1.5.3-1.jar to C:\Documents and
Settings\itaeh\.maven\repository\ant\jars\ant-1.5.3-1.jar
2003-11-19 09:43:47,035 WARN  org.apache.maven.verifier.DependencyVerifier
- WARNING: Failed to download ant-1.5.3-1.jar.
...

I am working behind a corporate fire wall but I had configured the proxy
settings in the build.properties file as described in the userguide.
However, that still doesn't work.  I am not sure what means does Maven use
to download these jar files (is it Http or Ftp?).  Is there a way to
resolve this problem?


Thanks & regards,
Eng Hoe
App Dev-DCS
SGX-IT Division

DID: (65) 62368963
FAX: (65) 64388840
email: [EMAIL PROTECTED]

Confidentiality Caution
===
Privileged/Confidential Information may be contained in this message. If
you are not the addressee indicated in this message (or responsible for
delivery of the message to such person), you may not copy or deliver this
message to anyone. In such case, you should destroy this message and kindly
notify the sender by reply email. Opinions, conclusions and other
information in this message that is not of an official nature shall be
deemed as neither given nor endorsed by SGX unless indicated by an
authorised representative independent of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Any success with Dashboard plugin and Reactor?

2003-11-18 Thread Yoway . Buorn
I was wondering if anybody had any success integrating Dashboard with a custom 
Reactor.  I have 4 projects with parallel directory structures:

/masterproject
/projecta
/projectb
/projectc

I have the dashboard plugin under reports in the masterproject POM and I added the 
following goal to masterproject's maven.xml:

  


  

I followed the directions on the dashboard page 
(http://maven.apache.org/reference/plugins/dashboard/index.html) and was able to get 
Solution 1 working just fine.  Solution 2 also worked.  But I don't want to have any 
POMs or maven.xml one directory up from my projects.  When I run the above goal, 
however, my Dashboard report comes out empty.  Any ideas as to why this doesn't work 
or am I just totally off here?  And should I consider not making all my project 
directories parallel?  Thanks.

Yoway Buorn
Software Engineer
Imagery Systems Engineering

GENERAL DYNAMICS
Advanced Information Systems

"Make me a fire and I'm warm for a night.  Set me on fire and I'm warm for the rest of 
my life." -- Ancient Didactical Saying



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven CVS Head and Plugins

2003-11-18 Thread Brett Porter
No, if you build from CVS HEAD, you won't get the plugins in maven-plugins
at all, right now. That might change soon.

Bootstrapping from CVS now gives a minimal Maven install, and you can then
selectively instal plugins either by plugin:download, or building them from
maven-plugins CVS HEAD.

Cheers,
Brett

> -Original Message-
> From: Alwyn Schoeman [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, 18 November 2003 5:26 PM
> To: [EMAIL PROTECTED]
> Subject: Maven CVS Head and Plugins
> 
> 
> Hi,
> 
> I notice that the plugins are in a different CVS module than maven.
> 
> Does it mean that if I build maven from CVS HEAD, I will not 
> necessarily get the CVS HEAD version of a specific plugin, 
> but the version that is on ibiblio?
> 
> Regards,
> 
> -- 
> Alwyn Schoeman
> SMART Money Inc.
> 
> If you're a SMARTY and you're using the better DNS 
> connections, you can access my homepage at 
> http://nevyn.smarties.com.ph/Members/alwyn.
> The other unlucky 
> ones: http://10.126.68.24/myplone
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


Re: Subversion changelog

2003-11-18 Thread Heiko Kundlacz
As I know Subversion isn't support. If you want to use subversion you 
should write your own plugin based on:

http://jsvn.alternatecomputing.com/

They provide an ant task you can implement. I tried out the checkout 
command and it works.

Heiko

Mikael Lundgren wrote:

Hi,

I'm trying to get Maven to generate changelog reports based on the 
contents of a Subversion repository, however all I get is empty reports.

I have found the following information and applied it:

- I have installed Apache 2.0.48, Subversion 0.33, Java 1.4.2_02, 
Maven 1.0rc1
- I have created a build.properties file
- I have set the maven.changelog.range to the empty string
- I have set the maven.changelog.factory= 
org.apache.maven.svnlib.SvnChangeLogFactory
- I can run svn log -h from the command prompt in the directory where 
I run "maven site" and the log file shows up as expected (it is not 
empty)
- I have set 
http://127.0.0.1/repos/leanon/leif/trunk in 
the repository portion of project.xml, I have also tested the url to 
actually point to the right place, not that it seems to matter much...

Here is what I get (I only include what I find to be the relevant 
output):

site:run-reports:
[echo] Generating the Change Log...
maven-changelog-plugin:report:
[echo] Generating the changelog report
SCM Working Directory: C:\ttt\leanon\leif\trunk
SCM Command Line[0]: svn
SCM Command Line[1]: log
SCM Command Line[2]: -v
ChangeLog found: 0 entries
That last line... "0 entries" worries me...

I checked the bug tracking system but all I could find was a mention 
of a problem that seems unrelated - and should be fixed by the range 
property mentioned above.

Anyone with any pointer? Is this even supposed to work at all?

Thanks!!


--
--
Heiko Kundlacz   | MailTo:   [EMAIL PROTECTED]
Qnamic AG| Tel:  +41 62 209 7056
Fabrikstr. 10| Natel:+41 78 861 4006
4614 Haegendorf  | Fax:  +41 62 209 7044
Switzerland  | Homepage: http://www.qnamic.com
--


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Muliproject example

2003-11-18 Thread Lester Ward
Can anyone provide me with a non-trivial example of using of
multiproject:install that actually works? By "non-trivial", I mean one where
one subproject requires another.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Subversion changelog

2003-11-18 Thread Mikael Lundgren
Hi,

I'm trying to get Maven to generate changelog reports based on the 
contents of a Subversion repository, however all I get is empty reports.

I have found the following information and applied it:

- I have installed Apache 2.0.48, Subversion 0.33, Java 1.4.2_02, Maven 
1.0rc1
- I have created a build.properties file
- I have set the maven.changelog.range to the empty string
- I have set the maven.changelog.factory= 
org.apache.maven.svnlib.SvnChangeLogFactory
- I can run svn log -h from the command prompt in the directory where I 
run "maven site" and the log file shows up as expected (it is not empty)
- I have set 
http://127.0.0.1/repos/leanon/leif/trunk in the 
repository portion of project.xml, I have also tested the url to 
actually point to the right place, not that it seems to matter much...

Here is what I get (I only include what I find to be the relevant output):

site:run-reports:
[echo] Generating the Change Log...
maven-changelog-plugin:report:
[echo] Generating the changelog report
SCM Working Directory: C:\ttt\leanon\leif\trunk
SCM Command Line[0]: svn
SCM Command Line[1]: log
SCM Command Line[2]: -v
ChangeLog found: 0 entries
That last line... "0 entries" worries me...

I checked the bug tracking system but all I could find was a mention of 
a problem that seems unrelated - and should be fixed by the range 
property mentioned above.

Anyone with any pointer? Is this even supposed to work at all?

Thanks!!
--
Mikael Lundgren, LeanOn AB
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: castor's plugin - maven: addPath null pointer exception

2003-11-18 Thread Fabio Uechi

Found the problem!
It was missing the build section (sourceDirectory) in my
project.xml
No its working!

Cheers
Fabio


Fabio Uechi writes:

> 
> Hi Chris,
> 
>   Yes, I did set the dst dir in the properties.
> 
> Thx anyway!
> 
> Chris Wilder-Smith writes:
> 
>> Fabio,
>> 
>> 
>> 
>> Just a thought... Have you set the destination directory via the
>> maven.castor.dest property in project.properties?
>> 
>> Regards,
>> 
>> Chris
>> 
>> 
>> 
>> On Tue, 2003-11-18 at 09:40, Fabio Uechi wrote:
>>> Hi all!!
>>> 
>>> This is my first time using maven. I'm trying to generate a
>>> jar containing some castor-xml generated classes. Unfortunatelly
>>> I'm not succeeding in generating the classes.
>>> I'm getting the following error message:
>>> 
>>> BUILD FAILED
>>> File.. file:/C:/Documents and
>>> Settings/Uechi/.maven/plugins/maven-castor-plu
>>> gin-1.0/
>>> Element... maven:addPath
>>> Line.. 21
>>> Column 58
>>> java.lang.NullPointerException
>>> Total time: 10 seconds
>>> 
>>>My maven.xml:
>>> 
>>> 
>>> 
>>> 
>>> 
>>> >> package="ch.fhso.efitness.util" types="j2"/>
>>> 
>>> 
>>> 
>>>Any help or tip is welcome! Thanks in advance!
>>> 
>>> Fabio
>>> 
>>> Get your free 15 Mb POP3 email @alexandria.cc
>>> Click here -> http://www.alexandria.cc/
>>> 
>>> -
>>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>>> For additional commands, e-mail: [EMAIL PROTECTED]
>>> 
>> -- 
>> Chris Wilder-Smith
>> Principal Technical Architect
>> 
>> mailto:[EMAIL PROTECTED]  http://www.cast.org
>> CAST: 781-245-2212   Home Office: 508-650-8885
>> AIM ChrisWSatWorkICQ: 95325318
>> 
>> 
>> 
>> -
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>> 
>> 
> 
> 
> Get your free 15 Mb POP3 email @alexandria.cc
> Click here -> http://www.alexandria.cc/
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


Get your free 15 Mb POP3 email @alexandria.cc
Click here -> http://www.alexandria.cc/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven used for JavaDoc only

2003-11-18 Thread Vikas Phonsa
Sorry the arguments were "-e -p ${project_loc} javadoc".

-Original Message-
From: Vikas Phonsa [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 18, 2003 10:12 AM
To: 'Maven Users List'
Subject: RE: Maven used for JavaDoc only

Hi,

I am new to Maven and not quite sure what u are looking for. But I
configured Maven javadoc plugin ( and others too) as an external tool in my
WSAD and then modified the default external tool configuration to have
arguments as " -e -p ${project_loc} eclipse" .

Then just selected the project I wanted the javadocs for and ran the Maven
javadoc plugin from External Tools and it generated the javadocs fine for
that selected project.

I am using a different directory structure for my projects than the one
typically used in Maven based projects so I had to modify the maven
properties a little bit.

Maybe u can try something on these lines.

Thanks

Vikas

-Original Message-
From: Yair Ogen [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 17, 2003 9:53 PM
To: [EMAIL PROTECTED]
Subject: Maven used for JavaDoc only

  Hi,
   
  I'm wondering. 
   
  Can I use the maven project to create JavaDoc comments for multiple
projects with out defining a repository and so on?
   
  My goal is to do so, because I'm working with WSAD v 5.02, and the 
  WSAD doesn't let me create JavaDoc to all the projects that are in my EAR.
   
  Maven as a hole is to much for me, especially if I don't require 
  builds and other features (such as repository etc.)
   
   
  Help will be very much appreciated.
 
 
Best Regards,
 
Yair Ogen
BLL - Hermesh
W: 972-3-9351875
M: 972-53-877269
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven used for JavaDoc only

2003-11-18 Thread Vikas Phonsa
Hi,

I am new to Maven and not quite sure what u are looking for. But I
configured Maven javadoc plugin ( and others too) as an external tool in my
WSAD and then modified the default external tool configuration to have
arguments as " -e -p ${project_loc} eclipse" .

Then just selected the project I wanted the javadocs for and ran the Maven
javadoc plugin from External Tools and it generated the javadocs fine for
that selected project.

I am using a different directory structure for my projects than the one
typically used in Maven based projects so I had to modify the maven
properties a little bit.

Maybe u can try something on these lines.

Thanks

Vikas

-Original Message-
From: Yair Ogen [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 17, 2003 9:53 PM
To: [EMAIL PROTECTED]
Subject: Maven used for JavaDoc only

  Hi,
   
  I'm wondering. 
   
  Can I use the maven project to create JavaDoc comments for multiple
projects with out defining a repository and so on?
   
  My goal is to do so, because I'm working with WSAD v 5.02, and the 
  WSAD doesn't let me create JavaDoc to all the projects that are in my EAR.
   
  Maven as a hole is to much for me, especially if I don't require 
  builds and other features (such as repository etc.)
   
   
  Help will be very much appreciated.
 
 
Best Regards,
 
Yair Ogen
BLL - Hermesh
W: 972-3-9351875
M: 972-53-877269
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Maven CVS Head and Plugins

2003-11-18 Thread Alwyn Schoeman
Hi,

I notice that the plugins are in a different CVS module than maven.

Does it mean that if I build maven from CVS HEAD, I will not necessarily get the
CVS HEAD version of a specific plugin, but the version that is on ibiblio?

Regards,

-- 
Alwyn Schoeman
SMART Money Inc.

If you're a SMARTY and you're using the better DNS connections, you
can access my homepage at http://nevyn.smarties.com.ph/Members/alwyn.
The other unlucky ones: http://10.126.68.24/myplone

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Maven used for JavaDoc only

2003-11-18 Thread Yair Ogen
  Hi,
   
  I'm wondering. 
   
  Can I use the maven project to create JavaDoc comments for multiple projects with 
out defining a repository and so on?
   
  My goal is to do so, because I'm working with WSAD v 5.02, and the 
  WSAD doesn't let me create JavaDoc to all the projects that are in my EAR.
   
  Maven as a hole is to much for me, especially if I don't require 
  builds and other features (such as repository etc.)
   
   
  Help will be very much appreciated.
 
 
Best Regards,
 
Yair Ogen
BLL - Hermesh
W: 972-3-9351875
M: 972-53-877269
 


Re: "-D" params with spaces are parsed into goals on unix

2003-11-18 Thread Martin Skopp
Sorry being late, dion, I was a few days offline...

On Tue, 2003-11-18 at 14:59, [EMAIL PROTECTED] wrote:
> What happens when you use
> 
>  maven '-Dmyname=billy bob'
> 
> or 
> 
>  maven "-Dmyname=billy bob"

Should work fine!  " is converted into ' anyway (after shell expansion
inside the double quotes).

Here's proove, I removed the error messages since the x_... command does
not exist:

[EMAIL PROTECTED] bin]$ cat test_shell.sh
#!/bin/sh -x
x_with "$@"
x_without $@


[EMAIL PROTECTED] bin]$ ./test_shell.sh Para1 "-Dmyname=billy bob" Para3
+ x_with Para1 '-Dmyname=billy bob' Para3
+ x_without Para1 -Dmyname=billy bob Para3

[EMAIL PROTECTED] bin]$ ./test_shell.sh Para1 '-Dmyname=billy bob' Para3
+ x_with Para1 '-Dmyname=billy bob' Para3
+ x_without Para1 -Dmyname=billy bob Para3


Will you fix it dion, or do want me to create a JIRA issue?

Thanks,
Martin

> Martin Skopp <[EMAIL PROTECTED]> wrote on 12/11/2003 07:28:57 PM:
> 
> > IMHO this is a bug in the shell-script MAVEN_HOME/bin/maven
> > 
> > Change the lines containing 
> > 
> >$MAIN_CLASS $@
> > 
> > into
> > 
> >$MAIN_CLASS "$@"

-- 
Martin Skopp
Riege Software International GmbH
Support: mailto:[EMAIL PROTECTED], Information: http://www.riege.com
 
This email is intended to be viewed with a nonproportional font.
Public Key on http://www.keyserver.net, Key-ID: 3D4027B5
Fingerprint: 1970 C78D 9A1D 99FA 5CE4  5C0D 29E6 6A95 3D40 27B5



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Creating another checkstyle target

2003-11-18 Thread Kevin Pearcey
How do I create an additional checkstyle target?

Currently it does not appear that checkstyle checks any of my test code
classes, I've pointed this out before but no one seems to care about the
quality of test code, just that the tests pass. In our projects we want to
produce all the usual checkstyle reports including coverage of the test
code, however we suspect that this will want a separate checkstyle
configuration as the rules will be slightly less strict.

Is this simple to achieve?

Cheers

Kevin Pearcey




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven Intergration Question

2003-11-18 Thread CMacMaho

Return Receipt
   
Your  RE: Maven Intergration Question  
document   
:  
   
was   Conor MacMahon/I.S./Amnesty International
received   
by:
   
at:   18/11/2003 16:29:57  
   





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven Intergration Question

2003-11-18 Thread CMacMaho

Return Receipt
   
Your  RE: Maven Intergration Question  
document   
:  
   
was   Conor MacMahon/I.S./Amnesty International
received   
by:
   
at:   18/11/2003 16:29:01  
   





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven Intergration Question

2003-11-18 Thread CMacMaho

Return Receipt
   
Your  RE: Maven Intergration Question  
document   
:  
   
was   Conor MacMahon/I.S./Amnesty International
received   
by:
   
at:   18/11/2003 16:29:51  
   





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven Intergration Question

2003-11-18 Thread CMacMaho

Return Receipt
   
Your  RE: Maven Intergration Question  
document   
:  
   
was   Conor MacMahon/I.S./Amnesty International
received   
by:
   
at:   18/11/2003 16:29:29  
   





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Maven Intergration Question

2003-11-18 Thread CMacMaho

Return Receipt
   
Your  Maven Intergration Question  
document   
:  
   
was   Conor MacMahon/I.S./Amnesty International
received   
by:
   
at:   18/11/2003 16:29:23  
   





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: castor's plugin - maven: addPath null pointer exception

2003-11-18 Thread Fabio Uechi

Hi Chris,

  Yes, I did set the dst dir in the properties.

Thx anyway!

Chris Wilder-Smith writes:

> Fabio,
> 
> 
> 
> Just a thought... Have you set the destination directory via the
> maven.castor.dest property in project.properties?
> 
> Regards,
> 
> Chris
> 
> 
> 
> On Tue, 2003-11-18 at 09:40, Fabio Uechi wrote:
>> Hi all!!
>> 
>> This is my first time using maven. I'm trying to generate a
>> jar containing some castor-xml generated classes. Unfortunatelly
>> I'm not succeeding in generating the classes.
>> I'm getting the following error message:
>> 
>> BUILD FAILED
>> File.. file:/C:/Documents and
>> Settings/Uechi/.maven/plugins/maven-castor-plu
>> gin-1.0/
>> Element... maven:addPath
>> Line.. 21
>> Column 58
>> java.lang.NullPointerException
>> Total time: 10 seconds
>> 
>>My maven.xml:
>> 
>> 
>>  
>>  
>>  
>>  > package="ch.fhso.efitness.util" types="j2"/>
>>  
>> 
>> 
>>Any help or tip is welcome! Thanks in advance!
>> 
>> Fabio
>> 
>> Get your free 15 Mb POP3 email @alexandria.cc
>> Click here -> http://www.alexandria.cc/
>> 
>> -
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>> 
> -- 
> Chris Wilder-Smith
> Principal Technical Architect
> 
> mailto:[EMAIL PROTECTED]  http://www.cast.org
> CAST: 781-245-2212   Home Office: 508-650-8885
> AIM ChrisWSatWorkICQ: 95325318
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


Get your free 15 Mb POP3 email @alexandria.cc
Click here -> http://www.alexandria.cc/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: starting up problems

2003-11-18 Thread dion
Stephen McConnell <[EMAIL PROTECTED]> wrote on 14/11/2003 02:14:52 AM:

> 
> 
> Nicolas Avila wrote:
> 
> >Hi
> >before anything I'm Running Win2k with Service Pack 4
> >i'm completelty new in maven, i didn´t know it existed before i
> tryed to check an IM server, wich runs using merlin, wich is builded
> by using maven (the im server is also maven builded)
> >so i started from the finish on, traced the steps to maven and 
> installed everything (in case of maven i used the installer and .zip
> files) and it's not working so i camed back to what i thougth 
> was the starting point... i 
> >i installed and runned maven with no prob... that seemed to be so
> >i removed then all contents and started again step by step
> >i used the install-repo file and all seemed to be fine... 
> untill i checked the pathtree and it had installed itself in "c:
> \maven\bin\%HOME%\.maven\repository" (the first time was it added in
> c:\Documents and Settings\Administrador\.maven\repository... but i 
> don't know if that happened because of the installer or the zip file
> [this time i'm using only the zip file])
> >
> 
> Nicolas:
> 
> You may want to try installing the beta-10 version of Maven. Generally 
> speaking this has less problems than RC1.

Nicolas: please don't use beta-10. We fixed so many bugs in beta 10.

Give us a bit more detail on your problems.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: plugin:download does delete the downloaded file immediately after download

2003-11-18 Thread dion
>From what I can tell,
a) It is a bug
b) It only occurs when maven.plugin.unpacked.dir == ${maven.home}/plugins
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/



Oliver Nolle <[EMAIL PROTECTED]> wrote on 19/11/2003 02:21:40 AM:

> When I use the following command:
> 
> > maven
> plugin:download -DgroupId=maven -DartifactId=maven-caller-plugin 
-Dversion=1
> .0
> 
> it successfully downloads the plugin, but immediately (and successfully)
> deletes the downloaded jar from my repository.
> 
> I filed it as a bug to JIRA (MAVEN-1032) because after adding a line to 
the
> jelly.xml it worked (see the bug report), or are my settings wrong?
> 
> Can anyone else try this behaviour or check my settings below?
> 
> Thanks, Oliver
> 
> 
> I have the following settings in my ~/build.properties (we use maven rc1 
on
> a win2k machine):
> 
> maven.repo.remote = http://ourserver.ourcompany/maven/repository,
> http://www.ibiblio.org/maven/
> maven.repo.central = ourserver
> maven.repo.central.directory = /exports/maven/repository
> maven.repo.remote.enabled = true
> 
> maven.repo.local=c:/programme/_dev/maven/repository
> maven.plugin.unpacked.dir=c:/programme/_dev/maven/plugins
> 
> maven.username = oliver.noelle
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



multiproject problem - maven.docs.dest

2003-11-18 Thread Nathan Coast
Hi,

I have a number of projects which extend a parent project. 
Unfortunately when i execute multiproject:site all the value of 
maven.docs.dest for each project is the same as the pom.siteDirectory 
for the parent project.  result being that all projects write to one 
directory and then copy from that directory to the multiproject 
sub-directory - this doubles the size of the generated files with each 
sub-project.

Any ideas what I have to do to make sure maven.docs.dest is set 
correctly for each sub-project.

I checked defaults.properties in maven.jar and the props seem fine.

maven.build.dir = ${basedir}/target
.
maven.docs.dest = ${maven.build.dir}/docs
cheers
Nathan
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: castor's plugin - maven: addPath null pointer exception

2003-11-18 Thread Chris Wilder-Smith
Fabio,



Just a thought... Have you set the destination directory via the
maven.castor.dest property in project.properties?

Regards,

Chris



On Tue, 2003-11-18 at 09:40, Fabio Uechi wrote:
> Hi all!!
> 
> This is my first time using maven. I'm trying to generate a
> jar containing some castor-xml generated classes. Unfortunatelly
> I'm not succeeding in generating the classes.
> I'm getting the following error message:
> 
> BUILD FAILED
> File.. file:/C:/Documents and
> Settings/Uechi/.maven/plugins/maven-castor-plu
> gin-1.0/
> Element... maven:addPath
> Line.. 21
> Column 58
> java.lang.NullPointerException
> Total time: 10 seconds
> 
>My maven.xml:
> 
> 
>   
>   
>   
>package="ch.fhso.efitness.util" types="j2"/>
>   
> 
> 
>Any help or tip is welcome! Thanks in advance!
> 
> Fabio
> 
> Get your free 15 Mb POP3 email @alexandria.cc
> Click here -> http://www.alexandria.cc/
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
-- 
Chris Wilder-Smith
Principal Technical Architect

mailto:[EMAIL PROTECTED]  http://www.cast.org
CAST: 781-245-2212   Home Office: 508-650-8885
AIM ChrisWSatWorkICQ: 95325318



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



plugin:download does delete the downloaded file immediately after download

2003-11-18 Thread Oliver Nolle
When I use the following command:

> maven
plugin:download -DgroupId=maven -DartifactId=maven-caller-plugin -Dversion=1
.0

it successfully downloads the plugin, but immediately (and successfully)
deletes the downloaded jar from my repository.

I filed it as a bug to JIRA (MAVEN-1032) because after adding a line to the
jelly.xml it worked (see the bug report), or are my settings wrong?

Can anyone else try this behaviour or check my settings below?

Thanks, Oliver


I have the following settings in my ~/build.properties (we use maven rc1 on
a win2k machine):

maven.repo.remote = http://ourserver.ourcompany/maven/repository,
http://www.ibiblio.org/maven/
maven.repo.central = ourserver
maven.repo.central.directory = /exports/maven/repository
maven.repo.remote.enabled = true

maven.repo.local=c:/programme/_dev/maven/repository
maven.plugin.unpacked.dir=c:/programme/_dev/maven/plugins

maven.username = oliver.noelle



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven - AntHill

2003-11-18 Thread dion
I'm not sure if this is helpful or not, but there is a CruiseControl 
plugin for Maven.

I've been using it successfully for a couple of weeks.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/



Euan Guttridge <[EMAIL PROTECTED]> wrote on 13/11/2003 02:36:01 
AM:

> Hi,
> 
> On the 28/8 Rafal Krzewski replied to the thread "Getting Source from 
CVS".
> Rafal mentioned there are plans to create CI features similar to AntHill 
for
> Maven. If this has progressed please let me know. Otherwise I will 
happily
> setup an AntHill/Maven system..
> 
> 
> Thanks
> Euan
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: "-D" params with spaces are parsed into goals on unix

2003-11-18 Thread dion
What happens when you use

 maven '-Dmyname=billy bob'

or 

 maven "-Dmyname=billy bob"
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/



Martin Skopp <[EMAIL PROTECTED]> wrote on 12/11/2003 07:28:57 PM:

> IMHO this is a bug in the shell-script MAVEN_HOME/bin/maven
> 
> Change the lines containing 
> 
>$MAIN_CLASS $@
> 
> into
> 
>$MAIN_CLASS "$@"
> 
> Well after all, this probably depends upon the actual shell you are
> using.  I don't know if a korn shell (ksh) would support "$@"
> Probably the first line
> 
>#! /bin/sh
> 
> should be changed to
> 
>#!/bin/bash
> 
> as well?  Don't know how this behaves on other unix, e.g. Solaris when
> you possibly don't have a bash!
> 
> I remind I have mentioned this already in a JIRA issue (cannot remind
> which one) but it seems it has not been fixed in CVS HEAD yet!
> 
> Committers, do you want us to create a JIRA issue?
> 
> On Wed, 2003-11-12 at 01:06, Jeff Barrett wrote:
> > I'm running rc1 w/ jdk1.3
> > 
> > Calling maven like so on Windows:
> > 
> > maven -Dmyname="billy bob"
> > 
> > Seems to proceed normally.
> > 
> > On my linux machine, I get:
> > 
> > BUILD FAILED
> > Goal "bob" does not exist in this project.
> > 
> > I thought it was a quoting problem so I tried:
> > 
> > maven -Dmyname=\"billy bob\"
> > 
> > which gives:
> > 
> > BUILD FAILED
> > Goal "bob"" does not exist in this project.
> > 
> > I'm assuming there's a cmd line parsing problem some where.  Any 
ideas?
> > 
> > +jeff
> > 
> > 
> > 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> -- 
> Martin Skopp
> Riege Software International GmbH
> Support: mailto:[EMAIL PROTECTED], Information: http://www.riege.com
> 
> This email is intended to be viewed with a nonproportional font.
> Public Key on http://www.keyserver.net, Key-ID: 3D4027B5
> Fingerprint: 1970 C78D 9A1D 99FA 5CE4  5C0D 29E6 6A95 3D40 27B5
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: DTD or XML Schema for navigation.xml

2003-11-18 Thread dion
Damn,

I forgotten I'd written that. 

I wonder how up to date it is.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/



Incze Lajos <[EMAIL PROTECTED]> wrote on 12/11/2003 12:08:04 PM:

> On Tue, Nov 11, 2003 at 09:51:02AM +0800, Melvin Dave P. Vivas,
> MCOM/3795 wrote:
> > Thanks for the info...
> > 
> > Melvin
> > 
> > On Tue, 2003-11-11 at 09:05, [EMAIL PROTECTED] wrote:
> > > There isn't one.
> [...]
> > > > Hi to all,
> > > > 
> > > > Where can I find the DTD or xml schema for navigation.xml?
> > > > 
> > > > Thanks.
> > > > 
> > > > Melvin
> 
> I have an maven-navigation-1.0.xsd in my $MAVEN_HOME directory. Is
> that a legacy schema? You can find it in the soruce tree at
> maven/src/xsd/maven-navigation-1.0.xsd (go to the webcvs interface
> if don't have cvs access). It may be out of date, but not soo bad.
> 
> incze
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



castor's plugin - maven: addPath null pointer exception

2003-11-18 Thread Fabio Uechi

Hi all!!

This is my first time using maven. I'm trying to generate a
jar containing some castor-xml generated classes. Unfortunatelly
I'm not succeeding in generating the classes.
I'm getting the following error message:

BUILD FAILED
File.. file:/C:/Documents and
Settings/Uechi/.maven/plugins/maven-castor-plu
gin-1.0/
Element... maven:addPath
Line.. 21
Column 58
java.lang.NullPointerException
Total time: 10 seconds

   My maven.xml:









   Any help or tip is welcome! Thanks in advance!

Fabio

Get your free 15 Mb POP3 email @alexandria.cc
Click here -> http://www.alexandria.cc/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: where is xdoclet plugin

2003-11-18 Thread Konstantin Priblouda

--- [EMAIL PROTECTED] wrote:
> It try to find the xdoclet plugin jar. I look in the
> xdoclet site but I 
> don't find it ! So could some one point me to it ...

currently you must build it from source...

regards,

=
[ Konstantin Pribluda ( ko5tik ) ]
Zu Verstärkung meines Teams suche ich ab Sofort einen
Softwareentwickler[In] für die Festanstellung. 
Arbeitsort: Mainz 
Skills:  Programieren, Kentnisse in OpenSource-Bereich
[ http://www.pribluda.de ]

__
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven Article

2003-11-18 Thread Emmanuel Venisse
Done.

Emmanuel

- Original Message - 
From: "Andy Jefferson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, November 17, 2003 9:51 PM
Subject: Maven Article


> I wrote an article on the use of Maven within the world of JDO (Java Data
> Objects) - particularly plugins for JDO implementations. You can read it
over
> at JDOcentral
>
> http://www.jdocentral.com/JDO_Articles_20031117.html
>
> Feel free to link to it from the Maven "Articles" webpage.
> -- 
> Andy
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: CheckStyle and Throws

2003-11-18 Thread Nicolas . CHALUMEAU
  ...
  * @throws NamingException
  */
  public HashMap getProfileData(
  ...)
  throws NamingException {

Its a javadoc syntaxe problem. You neeed to add the "NamingException" 
description :
  ...
  * @throws NamingException the naming exception description
  */
  public HashMap getProfileData(
  ...)
  throws NamingException {

Nicolas,

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



VB: Override behaviour in ejb:ejb goal !?

2003-11-18 Thread rikard.lindstrom
Can anyone else confirm that this does not work? 
(override of maven.ejb.src doesn't affect the build of ejb-jar)

/Rikard

-Ursprungligt meddelande-
Från: Lindström, Rikard 
Skickat: den 13 november 2003 10:39
Till: [EMAIL PROTECTED]
Ämne: SV: Override behaviour in ejb:ejb goal !?


Yes, that was a minor mistake by me :(
But the thing is that it doesn´t matter which value I set there, it still picks the 
resource-files from my original maven.ejb.src.

I´ve also tried to add a postGoal for ejb:ejb, which prints the value of 
maven.ejb.src. 
And guess what: 
- It prints the value that I have written! But if I look in the ejb-jar that is built, 
it are not the same xml-files which I have placed in the provided temp-dir.

I´m totally out of clues.

Regards / Rikard.

-Ursprungligt meddelande-
Från: Nathan Coast [mailto:[EMAIL PROTECTED]
Skickat: den 13 november 2003 10:31
Till: Maven Users List
Ämne: Re: Override behaviour in ejb:ejb goal !?


replacing the value of maven.ejb.src in your project.properties should work.  if 
it doesn't its a bug.

maven.ejb.src is the root of where your ejb-jar will be zipped so your 
descriptor files should be in ${maven.ejb.src}/META-INF

looking at your code you seem to be setting the ejb.src root to your descriptor 
dir which is wrong

 > 

hope this helps
Nathan

[EMAIL PROTECTED] wrote:

> Hi,
> I would like to be able to change the behaviour of the ejb-plugin, 
> namely the goal *ejb:ejb*.
> The thing is that I want to replace the resource-files with other ones 
> (same file-names, but different content) before the actual jar is being 
> built. This is kind of a problem :(
> I´ve tried to copy my xml files (ejb-jar.xml, weblogic-ejb-jar.xml etc) 
> to a different location and then change the variable *maven.ejb.src*, so 
> that it points on the new location where my xml files are placed. I 
> thought this would do an impact on the ejb:ejb goal, but it didn´t! It 
> seems like it doesn't care about my new path I´ve specified, and still 
> uses the original maven.ejb.src path when building the ejb-jar!
>  
> Have someone encountered a similiar or the exact same problem before, 
> and then managed to solve it somehow ?
>  
> Here is abit of my maven.xml:
>  
> 
> 
> 
> 
> 
> 
> 
>  
> 
> 
>  
> 
> 
>  
> Best Regards / Rikard Lindström.
>  
> ps. I want to replace the files because the resource-files in clearcase 
> contains tokens that must be replaced with a value before the jar is 
> built! ds.
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]