Re: Maven and Jdk 1.5 beta

2004-07-20 Thread Leif Nelson
You may need to set the maven.compile.source to 1.5 too.
Full docs are 
here:  http://maven.apache.org/reference/plugins/java/properties.html

--Leif
At 11:25 PM 7/20/2004, you wrote:
Christian Cabanero wrote:
Is there a way to get the Maven java plugin to work with JDK 1.5 beta?
I have 1.5 set as my default java installation and also overrode the
following property in my project.properties file
maven.compile.source = 1.5
but what I got was:
java:compile:
[echo] Compiling to C:\cygwin\src\redpoint\aparigraha/target/classes
[javac] Compiling 65 source files to
C:\cygwin\src\redpoint\aparigraha\target\classes
javac: source release 1.5 requires target release 1.5
however when I use javac manually and specify -source 1.5 it works fine.
Am I doing something wrong?

You need to add:
maven.compile.target=1.5

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


Re: Maven and Jdk 1.5 beta

2004-07-20 Thread matthew.hawthorne
Christian Cabanero wrote:
Is there a way to get the Maven java plugin to work with JDK 1.5 beta?
I have 1.5 set as my default java installation and also overrode the
following property in my project.properties file 

maven.compile.source = 1.5
but what I got was:
 
java:compile:
[echo] Compiling to C:\cygwin\src\redpoint\aparigraha/target/classes

[javac] Compiling 65 source files to
C:\cygwin\src\redpoint\aparigraha\target\classes
javac: source release 1.5 requires target release 1.5
however when I use javac manually and specify -source 1.5 it works fine.
Am I doing something wrong?

You need to add:
maven.compile.target=1.5
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


partial deployments

2004-07-20 Thread Denis McLaughlin
Hi,

  Sorry if this topic has been discussed before, but I couldn't find
anything appropriate in the archives.

  I'm working with a fairly large project with about 60 generated
artifacts.  We're currently using CruiseControl to build hourly, and are
now looking to expand this by having CC call a goal which will build,
test using Cactus, and then deploy the artifacts to our internal
repository for ourselves and other related groups.  However, it seems to
me that because the multiproject:deploy goal deploys the artifacts as it
builds them, that it is susceptible to a partial deployment.  If the
deploy goal encounters a problem halfway through the deployment, then
the repository will contain some new and some old artifacts, and this
may lead to inconsistent results for other groups using those artifacts
from the repository.

  One possible solution would be to have the deploy goal deploy to a
temporary name, and then as the final step in the deployment, move all
the artifacts with the temporary name to the final name.  So, for
example, if I want to deploy all my artifacts as 1.0-SNAPSHOT, I would
instead deploy to 1.0-TEMP, and then, once the deploy has finished and
all the artifacts deployed, rename all the 1.0-TEMP artifacts in the
repository to 1.0-SNAPSHOT.

  Am I correct in thinking that this type of partial deployment can be a
problem?  Are there other methods to avoid this, or is there something
I'm missing?  Feedback quite welcome...

Denis


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



Re: Project without public scm repository

2004-07-20 Thread Dion Gillard
I'd classify it as a bug

I don't think it's documented anywhere that you have to have a
connection element if you want to use developerConnection.

On Wed, 21 Jul 2004 05:59:15 +0200, Marcin Antczak
<[EMAIL PROTECTED]> wrote:
> Hello!
> 
> I have project which doesn't contain scm repository for users - only ssh
> for developers (project is not an open source).
> 
> And page -> cvs-usage.xml from xdoc plugin doesn't show any information
> about developers connection.
> 
> Is this bug or feature?
> 
> Marcin
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-- 
http://www.multitask.com.au/people/dion/

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



Project without public scm repository

2004-07-20 Thread Marcin Antczak
Hello!
I have project which doesn't contain scm repository for users - only ssh 
for developers (project is not an open source).

And page -> cvs-usage.xml from xdoc plugin doesn't show any information 
about developers connection.

Is this bug or feature?

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


Re: Re: The X-Radar plugin - Project current state and the development over time

2004-07-20 Thread Matt Kurjanowicz
I'd like to help :).  (If at all by testing).  Let me know how I can
best help and keep me appraised of any communications, etc.
Thanks!
Matt Kurjanowicz
The Readme Plugin
projassist.sourceforge.net/readme-plugin/

On Tue, 20 Jul 2004 18:01:07 +0200, Jerome Lacoste
<[EMAIL PROTECTED]> wrote:
> On Tue, 2004-07-20 at 17:32 +0200, Bent Andre Solheim wrote:
> > http://xradar.sourceforge.net/.
> 
> Great!
> 
> It just needs to be plugged into maven. We should coordinate our efforts
> so that we don't duplicate that, as a maven plugin is already underway
> according to the doc [1]. That integration work should be done in the
> xradar project itself.
> 
> Some quick notes:
> - it doesn't seem like the architecture uses a DB for storage. For those
> who want to use one, there's always the possibility to improve it.
> - it uses image/svg+html mime type for rendering. Don't forget your
> plugin
> 
> [1] http://xradar.sourceforge.net/architecture/overview.html
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-- 
Matthew Kurjanowicz
BSCS / BSDMTH Candidate
gtACM Treasurer
[EMAIL PROTECTED]

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



Re: Remote Repositories

2004-07-20 Thread Craig S . Cottingham
On Jul 20, 2004, at 21:15, [EMAIL PROTECTED] wrote:
Does anyone know how to setup a shared drive as a remote repository for
dependencies?  I tried:
maven.repo.remote=/path/to/remote/repo
but that gives a MalformedURLException: no protocol error.
Try
maven.repo.remote=file:/path/to/remote/repo
or
maven.repo.remote=file:///path/to/remote/repo
Caveat: I've never done this myself.
--
Craig S. Cottingham
[EMAIL PROTECTED]
OpenPGP key available from:
http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7977F79C
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Remote Repositories

2004-07-20 Thread Jeremy_Barth
Nevermind, I got it.

file:path/to/remote/repo

-Original Message-
From: Jeremy Barth /xtwn 
Sent: Tuesday, July 20, 2004 9:15 PM
To: [EMAIL PROTECTED]
Subject: Remote Repositories


Does anyone know how to setup a shared drive as a remote repository for
dependencies?  I tried:
maven.repo.remote=/path/to/remote/repo
but that gives a MalformedURLException: no protocol error.

Jeremy



Remote Repositories

2004-07-20 Thread Jeremy_Barth
Does anyone know how to setup a shared drive as a remote repository for
dependencies?  I tried:
maven.repo.remote=/path/to/remote/repo
but that gives a MalformedURLException: no protocol error.

Jeremy


RE: The X-Radar plugin - Project current state and the developmentover time

2004-07-20 Thread Jerome Lacoste
On Tue, 2004-07-20 at 19:27 +0200, Carlos Sanchez wrote:
> Has anyone already talked with them? 

I sent them an email to get in touch with them. I CCed some people who
had expressed their interest for such a tool.
I will add you to the next emails except if you don't want. OK?

> It sounds great.

Yes.

Jerome


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



Maven and Jdk 1.5 beta

2004-07-20 Thread Christian Cabanero
Is there a way to get the Maven java plugin to work with JDK 1.5 beta?
I have 1.5 set as my default java installation and also overrode the
following property in my project.properties file 

maven.compile.source = 1.5

but what I got was:
 
java:compile:
[echo] Compiling to C:\cygwin\src\redpoint\aparigraha/target/classes

[javac] Compiling 65 source files to
C:\cygwin\src\redpoint\aparigraha\target\classes
javac: source release 1.5 requires target release 1.5
 
however when I use javac manually and specify -source 1.5 it works fine.
Am I doing something wrong?
 
Thanks in advance,
Christian
 
 
_
Help the Lance Armstrong Foundation
support people living with cancer.
http://www.wearyellow.com  
 


Is "artifactId" allowed in a project.xml file?

2004-07-20 Thread Dennis Lundberg
Hello
I am going through the documentation for Maven and I am getting mixed 
messages regarding "artifactId". In the xml-schema [1] there does not 
seem to be an element called "artifactId" in the sequence for the 
"project" element.

If I add an "artifactId" element to a project.xml file, running
  maven pom:validate
will fail.
But "artifactId" is used in several places in the documentation where it 
appears to be used in place of the "id" element, for example here [2].

Since I am making patches for the documentation I would like to know 
what I should do about this. Any thoughts?

[1] http://maven.apache.org/xsd/maven-project-3.0.0.xsd
[2] http://maven.apache.org/reference/user-guide.html#POM_Processing
--
Dennis Lundberg
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Proxy

2004-07-20 Thread Jeremy_Barth
Thanks again for all of the help.  I'm not sure what actually fixed the
problem at this point.  One of the problems was that I wasn't using the
right password.  :(  The NTLM properties were necessary, although
maven.proxy.ntlm.host= could be set to anything and it still worked.  (I
don't understand that.)  I also updated the jdk to 1.4.2_04 before I
fixed the password.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 20, 2004 12:50 PM
To: [EMAIL PROTECTED]
Subject: RE: Proxy


Hi Jeremy
maven.proxy.ntlm.host=proxy1 should be name (address) of your computer,
not a proxy machine.

Peter
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 20, 2004 7:42 PM
To: [EMAIL PROTECTED]
Subject: RE: Proxy

Thanks for the responses :)

I found out that we, in fact, are behind a NTLM proxy.  I tried adding
the ntlm properties, but that did fix the whole problem.  I'm getting a
'Not authorized by proxy' exception.  The firewall team indicated that
the username and password were not being supplied to the proxy.  I then
tried supplying them on the command line (i.e.
-Dmaven.proxy.username=jbarth), but it resulted in the same exception.
I'm running jdk 1.4.2_01.

What do you all think?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 20, 2004 1:55 AM
To: [EMAIL PROTECTED]
Subject: RE: Proxy


Hello,

Or if you are behind a NTLM proxy (like us) you must define those
properties (you must be in jdk 1.4+ to make it works) :

maven.proxy.ntlm.host=proxy1
maven.proxy.ntlm.domain=AGF100
maven.proxy.host=proxy1
maven.proxy.port=80
maven.proxy.username=GONNOT
maven.proxy.password=*



-Message d'origine-
De : Carlos Sanchez [mailto:[EMAIL PROTECTED]
Envoyé : mardi 20 juillet 2004 00:34
À : 'Maven Users List'
Objet : RE: Proxy


Hi,

That should be enough, try passing properties in
${user.home}/build.properties with -D

Try this (in a single line)

maven -Dpackage=com.mycompany.app 
-Dmaven.proxy.host=web.us.proxy.cargill.com
-Dmaven.proxy.port=4200
-Dmaven.proxy.username=jbarth
-Dmaven.proxy.password=***
genapp

Regards

Carlos Sanchez
A Coruña, Spain

Oness Project
http://oness.sourceforge.net
 

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Sent: Monday, July 19, 2004 11:01 PM
> To: [EMAIL PROTECTED]
> Subject: Proxy
> 
> I'm attempting to run maven -Dpackage=com.mycompany.app 
> genapp, but fails on the proxy server.  I have 
> ${user.home}/build.properties defined
> with:
> ...
> maven.proxy.host = web.us.proxy.cargill.com maven.proxy.port 
> = 4200 maven.proxy.username = jbarth maven.proxy.password = 
> *** ...
> It can't download the jelly dependency.  Is there anything 
> else I need to define to get through the proxy?  I'm running 
> on an XP box.
> 
> Thanks,
> Jeremy J. Barth
> 



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



--
Ce message est protege par les regles relatives au secret des
correspondances ; il peut en outre contenir des informations a caractere
confidentiel ou protegees par differentes regles et notamment le secret
des affaires ; il est etabli a destination exclusive de son
destinataire. Toute divulgation, utilisation, diffusion ou reproduction
(totale ou partielle) de ce message, ou des informations qu'il contient,
doit etre prealablement autorisee. 
Tout message electronique est susceptible d'alteration et son integrite
ne peut etre assuree. Les AGF declinent toute responsabilite au titre de
ce message s'il a ete modifie ou falsifie. 
Si vous n'etes pas destinataire de ce message, merci de le detruire
immediatement et d'avertir l'expediteur de l'erreur de distribution et
de la destruction du message.
This message is protected by the secrecy of correspondence rules ;
furthermore it may contain privileged or confidential information that
is protected by law, notably by the secrecy of business relations rule ;
it is intended solely for the attention of   the addressee . Any
disclosure, use, dissemination or reproduction (either whole or
partial) of this message or the information contained herein is strictly
prohibited without prior consent.
Any electronic message  is susceptible to alteration  and  its integrity
can not be assured.  AGF declines any  responsibility for  this message
in the event of  alteration  or falsification..
If you are not the intended  recipient, please destroy it immediately
and  notify the sender of the wrong delivery and the mail deletion. 
--


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



-
To unsubscribe, e-mail: [EMAIL 

RE: Proxy

2004-07-20 Thread Grec Peter
Hi Jeremy
maven.proxy.ntlm.host=proxy1 should be name (address) of your computer, not a proxy 
machine.

Peter
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 20, 2004 7:42 PM
To: [EMAIL PROTECTED]
Subject: RE: Proxy

Thanks for the responses :)

I found out that we, in fact, are behind a NTLM proxy.  I tried adding
the ntlm properties, but that did fix the whole problem.  I'm getting a
'Not authorized by proxy' exception.  The firewall team indicated that
the username and password were not being supplied to the proxy.  I then
tried supplying them on the command line (i.e.
-Dmaven.proxy.username=jbarth), but it resulted in the same exception.
I'm running jdk 1.4.2_01.

What do you all think?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 20, 2004 1:55 AM
To: [EMAIL PROTECTED]
Subject: RE: Proxy


Hello,

Or if you are behind a NTLM proxy (like us) you must define those
properties (you must be in jdk 1.4+ to make it works) :

maven.proxy.ntlm.host=proxy1
maven.proxy.ntlm.domain=AGF100
maven.proxy.host=proxy1
maven.proxy.port=80
maven.proxy.username=GONNOT
maven.proxy.password=*



-Message d'origine-
De : Carlos Sanchez [mailto:[EMAIL PROTECTED]
Envoyé : mardi 20 juillet 2004 00:34
À : 'Maven Users List'
Objet : RE: Proxy


Hi,

That should be enough, try passing properties in
${user.home}/build.properties with -D

Try this (in a single line)

maven -Dpackage=com.mycompany.app 
-Dmaven.proxy.host=web.us.proxy.cargill.com
-Dmaven.proxy.port=4200
-Dmaven.proxy.username=jbarth
-Dmaven.proxy.password=***
genapp

Regards

Carlos Sanchez
A Coruña, Spain

Oness Project
http://oness.sourceforge.net
 

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Sent: Monday, July 19, 2004 11:01 PM
> To: [EMAIL PROTECTED]
> Subject: Proxy
> 
> I'm attempting to run maven -Dpackage=com.mycompany.app 
> genapp, but fails on the proxy server.  I have 
> ${user.home}/build.properties defined
> with:
> ...
> maven.proxy.host = web.us.proxy.cargill.com maven.proxy.port 
> = 4200 maven.proxy.username = jbarth maven.proxy.password = 
> *** ...
> It can't download the jelly dependency.  Is there anything 
> else I need to define to get through the proxy?  I'm running 
> on an XP box.
> 
> Thanks,
> Jeremy J. Barth
> 



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



--
Ce message est protege par les regles relatives au secret des
correspondances ; il peut en outre contenir des informations a caractere
confidentiel ou protegees par differentes regles et notamment le secret
des affaires ; il est etabli a destination exclusive de son
destinataire. Toute divulgation, utilisation, diffusion ou reproduction
(totale ou partielle) de ce message, ou des informations qu'il contient,
doit etre prealablement autorisee. 
Tout message electronique est susceptible d'alteration et son integrite
ne peut etre assuree. Les AGF declinent toute responsabilite au titre de
ce message s'il a ete modifie ou falsifie. 
Si vous n'etes pas destinataire de ce message, merci de le detruire
immediatement et d'avertir l'expediteur de l'erreur de distribution et
de la destruction du message.
This message is protected by the secrecy of correspondence rules ;
furthermore it may contain privileged or confidential information that
is protected by law, notably by the secrecy of business relations rule ;
it is intended solely for the attention of   the addressee . Any
disclosure, use, dissemination or reproduction (either whole or
partial) of this message or the information contained herein is strictly
prohibited without prior consent.
Any electronic message  is susceptible to alteration  and  its integrity
can not be assured.  AGF declines any  responsibility for  this message
in the event of  alteration  or falsification..
If you are not the intended  recipient, please destroy it immediately
and  notify the sender of the wrong delivery and the mail deletion. 
--


-
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: Proxy

2004-07-20 Thread James . Shute
I think there were some issues with the initial cuts of the NTLM code in
1.4.2 that were only fixed in _02 and above.

We're using _04 and can do NTLM fine so mayby try upgrading to that?

James


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: 20 July 2004 18:42
To: [EMAIL PROTECTED]
Subject: RE: Proxy


Thanks for the responses :)

I found out that we, in fact, are behind a NTLM proxy.  I tried adding the
ntlm properties, but that did fix the whole problem.  I'm getting a 'Not
authorized by proxy' exception.  The firewall team indicated that the
username and password were not being supplied to the proxy.  I then tried
supplying them on the command line (i.e. -Dmaven.proxy.username=jbarth), but
it resulted in the same exception. I'm running jdk 1.4.2_01.

What do you all think?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 20, 2004 1:55 AM
To: [EMAIL PROTECTED]
Subject: RE: Proxy


Hello,

Or if you are behind a NTLM proxy (like us) you must define those properties
(you must be in jdk 1.4+ to make it works) :

maven.proxy.ntlm.host=proxy1
maven.proxy.ntlm.domain=AGF100
maven.proxy.host=proxy1
maven.proxy.port=80
maven.proxy.username=GONNOT
maven.proxy.password=*



-Message d'origine-
De : Carlos Sanchez [mailto:[EMAIL PROTECTED]
Envoyé : mardi 20 juillet 2004 00:34
À : 'Maven Users List'
Objet : RE: Proxy


Hi,

That should be enough, try passing properties in
${user.home}/build.properties with -D

Try this (in a single line)

maven -Dpackage=com.mycompany.app 
-Dmaven.proxy.host=web.us.proxy.cargill.com
-Dmaven.proxy.port=4200
-Dmaven.proxy.username=jbarth
-Dmaven.proxy.password=***
genapp

Regards

Carlos Sanchez
A Coruña, Spain

Oness Project
http://oness.sourceforge.net
 

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Monday, July 19, 2004 11:01 PM
> To: [EMAIL PROTECTED]
> Subject: Proxy
> 
> I'm attempting to run maven -Dpackage=com.mycompany.app
> genapp, but fails on the proxy server.  I have 
> ${user.home}/build.properties defined
> with:
> ...
> maven.proxy.host = web.us.proxy.cargill.com maven.proxy.port 
> = 4200 maven.proxy.username = jbarth maven.proxy.password = 
> *** ...
> It can't download the jelly dependency.  Is there anything 
> else I need to define to get through the proxy?  I'm running 
> on an XP box.
> 
> Thanks,
> Jeremy J. Barth
> 



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



--
Ce message est protege par les regles relatives au secret des
correspondances ; il peut en outre contenir des informations a caractere
confidentiel ou protegees par differentes regles et notamment le secret des
affaires ; il est etabli a destination exclusive de son destinataire. Toute
divulgation, utilisation, diffusion ou reproduction (totale ou partielle) de
ce message, ou des informations qu'il contient, doit etre prealablement
autorisee. 
Tout message electronique est susceptible d'alteration et son integrite ne
peut etre assuree. Les AGF declinent toute responsabilite au titre de ce
message s'il a ete modifie ou falsifie. 
Si vous n'etes pas destinataire de ce message, merci de le detruire
immediatement et d'avertir l'expediteur de l'erreur de distribution et de la
destruction du message. This message is protected by the secrecy of
correspondence rules ; furthermore it may contain privileged or confidential
information that is protected by law, notably by the secrecy of business
relations rule ;
it is intended solely for the attention of   the addressee . Any
disclosure, use, dissemination or reproduction (either whole or
partial) of this message or the information contained herein is strictly
prohibited without prior consent. Any electronic message  is susceptible to
alteration  and  its integrity can not be assured.  AGF declines any
responsibility for  this message in the event of  alteration  or
falsification.. If you are not the intended  recipient, please destroy it
immediately and  notify the sender of the wrong delivery and the mail
deletion. 
--


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





For more information about Barclays Capital, please
visit our web site at http://www.barcap.com.


Internet communications are not secure and therefore the Barclays 
Group does not accept legal responsibility for the contents of this 
message.  Although the Barclays Group operates anti-virus programmes, 
it does not accept responsibility for any damage whatsoever that is 
caused by viruses being passed.  Any views or opinions presented are 
solely those of the author and do not nece

RE: Proxy

2004-07-20 Thread Jeremy_Barth
Thanks for the responses :)

I found out that we, in fact, are behind a NTLM proxy.  I tried adding
the ntlm properties, but that did fix the whole problem.  I'm getting a
'Not authorized by proxy' exception.  The firewall team indicated that
the username and password were not being supplied to the proxy.  I then
tried supplying them on the command line (i.e.
-Dmaven.proxy.username=jbarth), but it resulted in the same exception.
I'm running jdk 1.4.2_01.

What do you all think?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 20, 2004 1:55 AM
To: [EMAIL PROTECTED]
Subject: RE: Proxy


Hello,

Or if you are behind a NTLM proxy (like us) you must define those
properties (you must be in jdk 1.4+ to make it works) :

maven.proxy.ntlm.host=proxy1
maven.proxy.ntlm.domain=AGF100
maven.proxy.host=proxy1
maven.proxy.port=80
maven.proxy.username=GONNOT
maven.proxy.password=*



-Message d'origine-
De : Carlos Sanchez [mailto:[EMAIL PROTECTED]
Envoyé : mardi 20 juillet 2004 00:34
À : 'Maven Users List'
Objet : RE: Proxy


Hi,

That should be enough, try passing properties in
${user.home}/build.properties with -D

Try this (in a single line)

maven -Dpackage=com.mycompany.app 
-Dmaven.proxy.host=web.us.proxy.cargill.com
-Dmaven.proxy.port=4200
-Dmaven.proxy.username=jbarth
-Dmaven.proxy.password=***
genapp

Regards

Carlos Sanchez
A Coruña, Spain

Oness Project
http://oness.sourceforge.net
 

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Sent: Monday, July 19, 2004 11:01 PM
> To: [EMAIL PROTECTED]
> Subject: Proxy
> 
> I'm attempting to run maven -Dpackage=com.mycompany.app 
> genapp, but fails on the proxy server.  I have 
> ${user.home}/build.properties defined
> with:
> ...
> maven.proxy.host = web.us.proxy.cargill.com maven.proxy.port 
> = 4200 maven.proxy.username = jbarth maven.proxy.password = 
> *** ...
> It can't download the jelly dependency.  Is there anything 
> else I need to define to get through the proxy?  I'm running 
> on an XP box.
> 
> Thanks,
> Jeremy J. Barth
> 



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



--
Ce message est protege par les regles relatives au secret des
correspondances ; il peut en outre contenir des informations a caractere
confidentiel ou protegees par differentes regles et notamment le secret
des affaires ; il est etabli a destination exclusive de son
destinataire. Toute divulgation, utilisation, diffusion ou reproduction
(totale ou partielle) de ce message, ou des informations qu'il contient,
doit etre prealablement autorisee. 
Tout message electronique est susceptible d'alteration et son integrite
ne peut etre assuree. Les AGF declinent toute responsabilite au titre de
ce message s'il a ete modifie ou falsifie. 
Si vous n'etes pas destinataire de ce message, merci de le detruire
immediatement et d'avertir l'expediteur de l'erreur de distribution et
de la destruction du message.
This message is protected by the secrecy of correspondence rules ;
furthermore it may contain privileged or confidential information that
is protected by law, notably by the secrecy of business relations rule ;
it is intended solely for the attention of   the addressee . Any
disclosure, use, dissemination or reproduction (either whole or
partial) of this message or the information contained herein is strictly
prohibited without prior consent.
Any electronic message  is susceptible to alteration  and  its integrity
can not be assured.  AGF declines any  responsibility for  this message
in the event of  alteration  or falsification..
If you are not the intended  recipient, please destroy it immediately
and  notify the sender of the wrong delivery and the mail deletion. 
--


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




RE: The X-Radar plugin - Project current state and the developmentover time

2004-07-20 Thread Carlos Sanchez
Has anyone already talked with them? 

It sounds great.

> -Original Message-
> From: Jerome Lacoste [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, July 20, 2004 6:01 PM
> To: Maven Users List
> Subject: Re: The X-Radar plugin - Project current state and 
> the developmentover time
> 
> On Tue, 2004-07-20 at 17:32 +0200, Bent Andre Solheim wrote:
> > http://xradar.sourceforge.net/.
> 
> Great!
> 
> It just needs to be plugged into maven. We should coordinate 
> our efforts so that we don't duplicate that, as a maven 
> plugin is already underway according to the doc [1]. That 
> integration work should be done in the xradar project itself.
> 
> Some quick notes:
> - it doesn't seem like the architecture uses a DB for 
> storage. For those who want to use one, there's always the 
> possibility to improve it. 
> - it uses image/svg+html mime type for rendering. Don't 
> forget your plugin
> 
> [1] http://xradar.sourceforge.net/architecture/overview.html
> 
> 
> -
> 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 : [.war plugin] maven.war.final.name changed in 1.0 (from 1.0-rc2)?

2004-07-20 Thread Heritier Arnaud
I think that you must use maven:set :



Arnaud


> -Message d'origine-
> De : Konrad [mailto:[EMAIL PROTECTED] 
> Envoyé : mardi 20 juillet 2004 17:32
> À : maven
> Objet : [.war plugin] maven.war.final.name changed in 1.0 
> (from 1.0-rc2)?
> 
> 
> Hello.
> 
> Just wondering if anything changed with the .war
> plugin since 1.0-rc2?  In my maven.xml file, I define
> the following:
> 
> 
>   
>  pattern="MMdd-HHmm"/>
>   
>value="${prj.war.name}-${pom.currentVersion}-${timestamp}.war"/>
> ...
> 
> 
> 
> In Maven 1.0-RC2, I would get the following as the
> .war name:
> 
>project-1.0-20040720-1029.war
> 
> However, after upgrading to Maven 1.0, the .war name
> goes back to the default:
> 
>project.war
> 
> 
> Any ideas?
> 
> Thanks...
> 
> 
> 
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around 
> http://mail.yahoo.com 
> 
> -
> 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: The X-Radar plugin - Project current state and the development over time

2004-07-20 Thread Jerome Lacoste
On Tue, 2004-07-20 at 17:32 +0200, Bent Andre Solheim wrote:
> http://xradar.sourceforge.net/.

Great!

It just needs to be plugged into maven. We should coordinate our efforts
so that we don't duplicate that, as a maven plugin is already underway
according to the doc [1]. That integration work should be done in the
xradar project itself.

Some quick notes:
- it doesn't seem like the architecture uses a DB for storage. For those
who want to use one, there's always the possibility to improve it. 
- it uses image/svg+html mime type for rendering. Don't forget your
plugin

[1] http://xradar.sourceforge.net/architecture/overview.html


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



java.net poll

2004-07-20 Thread Ryan Sonnek
java.net (http://www.java.net) is hosting a poll about what build system you use for 
your project.  I suggest that some maven users hop over and place their vote!  Right 
now Ant's quite a bit in front... =)

Ryan

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



The X-Radar plugin - Project current state and the development over time

2004-07-20 Thread Bent Andre Solheim
Hi,
I have been following discussions on this group the last weeks, and have  
read that some (many) are looking for plugins to support JUnit- ,  
JDepend-, PMD-, Checkstyle- etc. reports over time. I have also noticed  
that no one has mentioned the XRadar plugin. I believe this plugin does  
just what some of you guys want. Now, I just starting to use Maven myself,  
so I'm currently not using it myself - but I'm getting there...

You can check out http://xradar.sourceforge.net/. This may be just what  
you need! :)

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


[.war plugin] maven.war.final.name changed in 1.0 (from 1.0-rc2)?

2004-07-20 Thread Konrad
Hello.

Just wondering if anything changed with the .war
plugin since 1.0-rc2?  In my maven.xml file, I define
the following:


  

  
  
...



In Maven 1.0-RC2, I would get the following as the
.war name:

   project-1.0-20040720-1029.war

However, after upgrading to Maven 1.0, the .war name
goes back to the default:

   project.war


Any ideas?

Thanks...



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



documentation vs wiki: standard directory layout

2004-07-20 Thread Jerome Lacoste
I am confused by the difference between the doc and the wiki.

http://maven.apache.org/reference/dirlayout.html
http://wiki.codehaus.org/maven/DirectoryLayout

E.g. src/java vs src/main/java

What will be the future? 
Is m1 1.1 or m2 going to adopt the wiki's recommended layout? 

J


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



RE: FTP stuff

2004-07-20 Thread Charles Daniels
Thanks for the suggestion.  I'll give it a try.

> -Original Message-
> From: Costin Grigore [mailto:[EMAIL PROTECTED]
> Sent: Monday, July 19, 2004 4:41 PM
> To: Maven Users List
> Subject: Re: FTP stuff
> 
> 
> I have this problem also on maven rc3.
> I resolved it by removing the
> org/apache/tools/ant/taskdefs/optional/net directory from
> ant-optional-1.5.3-1.jar and adding a dependency to the ant-1.6.1.jar,
> ant-commons-net.1.6.1.jar and commons-net-1.1.0.jar.
> 
> Something like this:
> 
>  classname="org.apache.tools.ant.taskdefs.optional.net.FTP">
> 
> location="d:\workspace\.maven\repository\ant\jars\ant-1.6.1.jar"/>
> location="d:\workspace\.maven\repository\ant\jars\ant-commons-net-
> 1.6.1.jar"/>
> location="d:\workspace\.maven\repository\commons-net\jars\commons-
> net-1.1.0.jar"/>
> 
> 
> 
> 
> This is a hack, but until maven is compiled using a newer ant version
> is a solution ;)
> 
> raisercostin
> 
> -
> 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 : How to send documentation patches

2004-07-20 Thread Heritier Arnaud
Yes it is the good process to follow.

However, I'm not sure that Brett applied documentations updates on the HEAD branch.
Can you apply your changes on the MAVEN-1_0-BRANCH ??

Arnaud

> -Message d'origine-
> De : Dennis Lundberg [mailto:[EMAIL PROTECTED] 
> Envoyé : mardi 20 juillet 2004 13:45
> À : Maven Users List
> Objet : How to send documentation patches
> 
> 
> While learning Maven I have read a lot of documentation. Through this 
> process I have stumbled upon a few minor errors, like spelling and 
> broken links. What is the preferred way to send patches for this?
> 
> I have checked out Maven HEAD from CVS and applied my changes to the 
> xdocs directory. Is that the right place? Should I file an 
> issue in Jira 
> about this and add "cvs diff -u" patches to it?
> 
> --
> Dennis Lundberg
> 
> 
> -
> 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: users Digest 17 Jul 2004 13:43:55 -0000 Issue 772

2004-07-20 Thread William Mee
I have seen this syntax used in many plugins, and I also do not get it to 
work. Seems like Jelly has a problem with the periods in the variable 
names? To test if the pom id is empty, for example, I have to do the 
following

  
  
  
  You must define currentVersion in your POM.
  

The test on pomp.currentVersion (${empty(pom.currentVersion)}) does not 
work.

- Will


> - Message from [EMAIL PROTECTED] on Fri, 16 Jul 2004 13:26:
> 32 -0400 -
> 
> To:
> 
> "Maven Users List" <[EMAIL PROTECTED]>
> 
> Subject:
> 
> Re: Problems with if tests in plugins
> 
> I've come across at least 2 plugins with the constructs I've documented 
> (jetspeed and torque).  The question is, did they ever work as written? 
Is 
> it possible that they were simply never tested? 
> 
> Making the change you suggest works, as well as renaming 
> maven.jetspeed.debug to maven_jetspeed_debug.  However, this isn't a 
> workable solution because I didn't write the plugins in question.
> 
> Can anyone clarify the situation?  Did the original expression work in 
the 
> past, and the plugin hasn't been updated?  Or is something else going on 

> here?
> 
> 
> 
> 
> 
> Jagadeesh Danala <[EMAIL PROTECTED]>
> 07/16/2004 01:11 PM
> Please respond to "Maven Users List"
> 
> 
> To: Maven Users List <[EMAIL PROTECTED]>
> cc: 
> Subject:Re: Problems with if tests in plugins
> 
> 
> Hi
> 
> The problem is with your expression
> 
>  should work if the value of the 
> property is set to true.


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



extending the xref functionality

2004-07-20 Thread Nathan Coast
Hi,
I'd like to be able to create xref documentation for sources other than 
java.  For some tutorials I'm working on it'd be useful to have links to 
other project files, in particular jsp, xml and sql files.  Anyone 
attempted anything like this before?  Any idea if the jxr code can be 
massaged to achieve this?

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


How to send documentation patches

2004-07-20 Thread Dennis Lundberg
While learning Maven I have read a lot of documentation. Through this 
process I have stumbled upon a few minor errors, like spelling and 
broken links. What is the preferred way to send patches for this?

I have checked out Maven HEAD from CVS and applied my changes to the 
xdocs directory. Is that the right place? Should I file an issue in Jira 
about this and add "cvs diff -u" patches to it?

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


Re: Maven 1.0 deletes my snapshot jars when attemping to download dependencies

2004-07-20 Thread Ben Walding
Although this is probably a bug, try and ensure your clock isn't ahead 
of the server clock that you are getting dependencies from.

There were some changes in the rc2-4 series to try and stop this from 
being such an issue, but it's possible some edge cases snuck through.


Michael Mattox wrote:
I just tried upgrading from 1.0RC3 to 1.0.  I deleted my .maven directory
contents.  I'm having a very weird problem that I haven't seen reported here
or in JIRA.  I run maven jar:install-snapshot on a jar and that works ok.
Then I run maven clean in a project that has the previously mentioned
snapshot as a dependency.  It displays this:
Regards,Tentative de tÚlÚchargement de cs-common-SNAPSHOT.jar.
warning: last-modified not specified
0K downloaded
build:start:
clean:clean:
   [delete] Deleting directory
D:\projects\MDSP\eclipse\sources\cs-log-logservice\target
BUILD SUCCESSFUL
Total time: 14 seconds
Finished at: Tue Jul 20 13:19:29 CEST 2004
When I look at the snapshot jar created in the first command, it is now 0
bytes.  To verify this is related to release 1.0, I again removed my .maven
contents and repeated the commands using Maven 1.0RC3 and it works fine.
Any ideas what changed in 1.0 to make it delete my dependency snapshot jars?
Michael Mattox
--
This E-mail is confidential.  It may also be legally privileged.  If you are
not the addressee you may not copy, forward, disclose or use any part of it.
If you have received this message in error, please delete it and all copies
from your system and notify the sender immediately by return E-mail.
Internet communications cannot be guaranteed to be timely, secure, error or
virus-free.  The sender does not accept liability for any errors or omissions.
-
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: Listings in maven repository on ibiblio?

2004-07-20 Thread Ben Walding
http://www.ibiblio.org/maven/du.txt
Current directory usage in kilobytes
Norbert Pabiś wrote:
Thank for answers.
It works indeed. That was problem in our local network.
BTW.
Does anybody know what is the size
of maven repository on ibiblio now?
And maybe how does it increase?
Norbert Pabiś wrote:
Hi
Is now listing on ibiblio forbidden?
http://www.ibiblio.org/maven/


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


Maven 1.0 deletes my snapshot jars when attemping to download dependencies

2004-07-20 Thread Michael Mattox
I just tried upgrading from 1.0RC3 to 1.0.  I deleted my .maven directory
contents.  I'm having a very weird problem that I haven't seen reported here
or in JIRA.  I run maven jar:install-snapshot on a jar and that works ok.
Then I run maven clean in a project that has the previously mentioned
snapshot as a dependency.  It displays this:

Regards,Tentative de tÚlÚchargement de cs-common-SNAPSHOT.jar.
warning: last-modified not specified
0K downloaded
build:start:

clean:clean:
[delete] Deleting directory
D:\projects\MDSP\eclipse\sources\cs-log-logservice\target
BUILD SUCCESSFUL
Total time: 14 seconds
Finished at: Tue Jul 20 13:19:29 CEST 2004

When I look at the snapshot jar created in the first command, it is now 0
bytes.  To verify this is related to release 1.0, I again removed my .maven
contents and repeated the commands using Maven 1.0RC3 and it works fine.

Any ideas what changed in 1.0 to make it delete my dependency snapshot jars?


Michael Mattox


--
This E-mail is confidential.  It may also be legally privileged.  If you are
not the addressee you may not copy, forward, disclose or use any part of it.
If you have received this message in error, please delete it and all copies
from your system and notify the sender immediately by return E-mail.
Internet communications cannot be guaranteed to be timely, secure, error or
virus-free.  The sender does not accept liability for any errors or omissions.


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



Re: Listings in maven repository on ibiblio?

2004-07-20 Thread Norbert Pabiś
Thank for answers.
It works indeed. That was problem in our local network.
BTW.
Does anybody know what is the size
of maven repository on ibiblio now?
And maybe how does it increase?
Norbert Pabiś wrote:
Hi
Is now listing on ibiblio forbidden?
http://www.ibiblio.org/maven/
--
Norbert Pabiś
[EMAIL PROTECTED]
http://www.e-point.pl
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Listings in maven repository on ibiblio?

2004-07-20 Thread Christian Andersson
Norbert Pabiś wrote:
Hi
Is now listing on ibiblio forbidden?
http://www.ibiblio.org/maven/
no problem when using mozilla
/Christian
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Listings in maven repository on ibiblio?

2004-07-20 Thread Arto Pastinen
Artsi

No, why? Do you know that it take some time to download page?

Artsi

ti, 2004-07-20 kello 12:11, Norbert Pabiś kirjoitti:
> Hi
> 
> Is now listing on ibiblio forbidden?
> 
> http://www.ibiblio.org/maven/


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



Re: Listings in maven repository on ibiblio?

2004-07-20 Thread Jose M. Rus
It works for me.
Norbert PabiÅ wrote:
Hi
Is now listing on ibiblio forbidden?
http://www.ibiblio.org/maven/

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


Réf. : Listings in maven repository on ibiblio?

2004-07-20 Thread fabrice . belingard




Hi Norbert,

I have no problem to list the maven folder on ibiblio.

Fabrice.



   
 Norbert PabiÅ 
 <[EMAIL PROTECTED]  
 pl>  Pour 
   [EMAIL PROTECTED]  
 20/07/2004 11:11   cc 
   
 Objet 
 Veuillez  Listings in maven repository on 
rÃpondre à ibiblio?
 Maven Users List  
 <[EMAIL PROTECTED]  
 che.org>  
   
   
   




Hi

Is now listing on ibiblio forbidden?

http://www.ibiblio.org/maven/

--
Norbert PabiÅ
[EMAIL PROTECTED]
http://www.e-point.pl


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



Listings in maven repository on ibiblio?

2004-07-20 Thread Norbert Pabiś
Hi
Is now listing on ibiblio forbidden?
http://www.ibiblio.org/maven/
--
Norbert Pabiś
[EMAIL PROTECTED]
http://www.e-point.pl
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Réf. : Re: New dependency download display

2004-07-20 Thread Arto Pastinen
I don't think so..

I looked couple day's ago how this current console download meter
work's, and i did remember that there were also other meters, and good
quess about this maven.download.meter parameter was correct... =) maby i
should make some bet todays.. =)

Ok, i need to search from source how to spell parameter value.

Download meter's sources are in org.apache.maven.util package, see
http://maven.apache.org/xref/index.html

Artsi

ti, 2004-07-20 kello 11:06, [EMAIL PROTECTED] kirjoitti:
> Thanks !
> 
> ahem, Is this somewhere in the doc ... ?
> 
> Julien
> 
> 
> 
> 
> Extranet
> [EMAIL PROTECTED] - 20/07/2004 09:49
> 
> 
> Veuillez répondre à [EMAIL PROTECTED]
> 
> Pour : users
> 
> cc :
> 
> 
> Objet : Re: New dependency download display
> 
> 
> .. and old one is still in there.
> 
> maven -Dmaven.download.meter=bootstrap
> 
> default seems to be console
> 
> ti, 2004-07-20 kello 10:47, Arto Pastinen kirjoitti:
> > Hi!
> >
> > maven -Dmaven.download.meter=silent
> >
> > Artsi
> >
> > ti, 2004-07-20 kello 10:38, Dion Gillard kirjoitti:
> > > I too would like this feature.
> > >
> > > On Tue, 20 Jul 2004 09:35:42 +0200, [EMAIL PROTECTED]
> > > <[EMAIL PROTECTED]> wrote:
> > > > Hi
> > > >
> > > > Is it possible to disable the new way of display the dependency
> download
> > > > progression (the increasing number of downloaded kb) ?
> > > >
> > > > The reason is that we call maven from JBuilder, and the JBuilder
> output
> > > > console can only appends data, this means that the log is :
> > > >
> > > > 9/3409K 16/3409K 18/3409K 26/3409K 34/3409K 44/3409K 52/3409K
> 61/3409K 69/3409K 78/3409K 79/3409K 87/3409K 96/3409K 106/3409K  ...
> downloaded
> > > >
> > > > (the line is 5000 char longs ...)
> > > >
> > > > which make the output mostly useless
> > > >
> > > > Thanks
> > > >
> > > > Julien
> > > >
> > > > This message and any attachments (the "message") is
> > > > intended solely for the addressees and is confidential.
> > > > If you receive this message in error, please delete it and
> > > > immediately notify the sender. Any use not in accord with
> > > > its purpose, any dissemination or disclosure, either whole
> > > > or partial, is prohibited except formal approval. The internet
> > > > can not guarantee the integrity of this message.
> > > > BNP PARIBAS (and its subsidiaries) shall (will) not
> > > > therefore be liable for the message if modified.
> > > >
> > > > -
> > > >
> > > > Ce message et toutes les pieces jointes (ci-apres le
> > > > "message") sont etablis a l'intention exclusive de ses
> > > > destinataires et sont confidentiels. Si vous recevez ce
> > > > message par erreur, merci de le detruire et d'en avertir
> > > > immediatement l'expediteur. Toute utilisation de ce
> > > > message non conforme a sa destination, toute diffusion
> > > > ou toute publication, totale ou partielle, est interdite, sauf
> > > > autorisation expresse. L'internet ne permettant pas
> > > > d'assurer l'integrite de ce message, BNP PARIBAS (et ses
> > > > filiales) decline(nt) toute responsabilite au titre de ce
> > > > message, dans l'hypothese ou il aurait ete modifie.
> > > >
> > > > -
> > > > 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]
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> This message and any attachments (the "message") is
> intended solely for the addressees and is confidential. 
> If you receive this message in error, please delete it and 
> immediately notify the sender. Any use not in accord with 
> its purpose, any dissemination or disclosure, either whole 
> or partial, is prohibited except formal approval. The internet
> can not guarantee the integrity of this message. 
> BNP PARIBAS (and its subsidiaries) shall (will) not 
> therefore be liable for the message if modified. 
> 
> -
> 
> Ce message et toutes les pieces jointes (ci-apres le 
> "message") sont etablis a l'intention exclusive de ses 
> destinataires et sont confidentiels. Si vous recevez ce 
> message par erreur, merci de le detruire et d'en avertir 
> immediatement l'expediteur. Toute utilisation de ce 
> message non conforme a sa destination, toute diffusion 
> ou toute publication, totale ou partielle, est interdite, sauf 
> autorisation expresse. L'internet ne permettant pas 
> d'assurer l'integrite de ce message, BNP PARIBAS (et ses
> filiales) decline(nt) toute responsabilite au titre de ce 
> message, dans 

Réf. : Re: New dependency download display

2004-07-20 Thread julien . kirch

Thanks !

ahem, Is this somewhere in the doc ... ?

Julien




Extranet
[EMAIL PROTECTED] - 20/07/2004 09:49


Veuillez répondre à [EMAIL PROTECTED]

Pour : users

cc :


Objet : Re: New dependency download display


.. and old one is still in there.

maven -Dmaven.download.meter=bootstrap

default seems to be console

ti, 2004-07-20 kello 10:47, Arto Pastinen kirjoitti:
> Hi!
>
> maven -Dmaven.download.meter=silent
>
> Artsi
>
> ti, 2004-07-20 kello 10:38, Dion Gillard kirjoitti:
> > I too would like this feature.
> >
> > On Tue, 20 Jul 2004 09:35:42 +0200, [EMAIL PROTECTED]
> > <[EMAIL PROTECTED]> wrote:
> > > Hi
> > >
> > > Is it possible to disable the new way of display the dependency
download
> > > progression (the increasing number of downloaded kb) ?
> > >
> > > The reason is that we call maven from JBuilder, and the JBuilder
output
> > > console can only appends data, this means that the log is :
> > >
> > > 9/3409K 16/3409K 18/3409K 26/3409K 34/3409K 44/3409K 52/3409K
61/3409K 69/3409K 78/3409K 79/3409K 87/3409K 96/3409K 106/3409K  ...
downloaded
> > >
> > > (the line is 5000 char longs ...)
> > >
> > > which make the output mostly useless
> > >
> > > Thanks
> > >
> > > Julien
> > >
> > > This message and any attachments (the "message") is
> > > intended solely for the addressees and is confidential.
> > > If you receive this message in error, please delete it and
> > > immediately notify the sender. Any use not in accord with
> > > its purpose, any dissemination or disclosure, either whole
> > > or partial, is prohibited except formal approval. The internet
> > > can not guarantee the integrity of this message.
> > > BNP PARIBAS (and its subsidiaries) shall (will) not
> > > therefore be liable for the message if modified.
> > >
> > > -
> > >
> > > Ce message et toutes les pieces jointes (ci-apres le
> > > "message") sont etablis a l'intention exclusive de ses
> > > destinataires et sont confidentiels. Si vous recevez ce
> > > message par erreur, merci de le detruire et d'en avertir
> > > immediatement l'expediteur. Toute utilisation de ce
> > > message non conforme a sa destination, toute diffusion
> > > ou toute publication, totale ou partielle, est interdite, sauf
> > > autorisation expresse. L'internet ne permettant pas
> > > d'assurer l'integrite de ce message, BNP PARIBAS (et ses
> > > filiales) decline(nt) toute responsabilite au titre de ce
> > > message, dans l'hypothese ou il aurait ete modifie.
> > >
> > > -
> > > 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]










This message and any attachments (the "message") is
intended solely for the addressees and is confidential. 
If you receive this message in error, please delete it and 
immediately notify the sender. Any use not in accord with 
its purpose, any dissemination or disclosure, either whole 
or partial, is prohibited except formal approval. The internet
can not guarantee the integrity of this message. 
BNP PARIBAS (and its subsidiaries) shall (will) not 
therefore be liable for the message if modified. 

-

Ce message et toutes les pieces jointes (ci-apres le 
"message") sont etablis a l'intention exclusive de ses 
destinataires et sont confidentiels. Si vous recevez ce 
message par erreur, merci de le detruire et d'en avertir 
immediatement l'expediteur. Toute utilisation de ce 
message non conforme a sa destination, toute diffusion 
ou toute publication, totale ou partielle, est interdite, sauf 
autorisation expresse. L'internet ne permettant pas 
d'assurer l'integrite de ce message, BNP PARIBAS (et ses
filiales) decline(nt) toute responsabilite au titre de ce 
message, dans l'hypothese ou il aurait ete modifie.


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



Accessing build or project properties in xdoc files

2004-07-20 Thread fabrice . belingard




Hi all,

I would like to access the value of a build or project property from an
xdoc file, and I can't get it to work.

I'd like to do something like :

  

  Display here the value of a project property :
$myProject.myPropertyToDisplay

  


Has someone ever tried to do that ?

More generally, how is it possible to externalize some strings from xdocs ?


Thanks a lot
Fabrice.


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



Re: New dependency download display

2004-07-20 Thread Arto Pastinen
.. and old one is still in there.

maven -Dmaven.download.meter=bootstrap

default seems to be console

ti, 2004-07-20 kello 10:47, Arto Pastinen kirjoitti:
> Hi!
> 
> maven -Dmaven.download.meter=silent
> 
> Artsi
> 
> ti, 2004-07-20 kello 10:38, Dion Gillard kirjoitti:
> > I too would like this feature.
> > 
> > On Tue, 20 Jul 2004 09:35:42 +0200, [EMAIL PROTECTED]
> > <[EMAIL PROTECTED]> wrote:
> > > Hi
> > > 
> > > Is it possible to disable the new way of display the dependency download
> > > progression (the increasing number of downloaded kb) ?
> > > 
> > > The reason is that we call maven from JBuilder, and the JBuilder output
> > > console can only appends data, this means that the log is :
> > > 
> > > 9/3409K 16/3409K 18/3409K 26/3409K 34/3409K 44/3409K 52/3409K 61/3409K 69/3409K 
> > > 78/3409K 79/3409K 87/3409K 96/3409K 106/3409K  ... downloaded
> > > 
> > > (the line is 5000 char longs ...)
> > > 
> > > which make the output mostly useless
> > > 
> > > Thanks
> > > 
> > > Julien
> > > 
> > > This message and any attachments (the "message") is
> > > intended solely for the addressees and is confidential.
> > > If you receive this message in error, please delete it and
> > > immediately notify the sender. Any use not in accord with
> > > its purpose, any dissemination or disclosure, either whole
> > > or partial, is prohibited except formal approval. The internet
> > > can not guarantee the integrity of this message.
> > > BNP PARIBAS (and its subsidiaries) shall (will) not
> > > therefore be liable for the message if modified.
> > > 
> > > -
> > > 
> > > Ce message et toutes les pieces jointes (ci-apres le
> > > "message") sont etablis a l'intention exclusive de ses
> > > destinataires et sont confidentiels. Si vous recevez ce
> > > message par erreur, merci de le detruire et d'en avertir
> > > immediatement l'expediteur. Toute utilisation de ce
> > > message non conforme a sa destination, toute diffusion
> > > ou toute publication, totale ou partielle, est interdite, sauf
> > > autorisation expresse. L'internet ne permettant pas
> > > d'assurer l'integrite de ce message, BNP PARIBAS (et ses
> > > filiales) decline(nt) toute responsabilite au titre de ce
> > > message, dans l'hypothese ou il aurait ete modifie.
> > > 
> > > -
> > > 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]



Re: New dependency download display

2004-07-20 Thread Arto Pastinen
Hi!

maven -Dmaven.download.meter=silent

Artsi

ti, 2004-07-20 kello 10:38, Dion Gillard kirjoitti:
> I too would like this feature.
> 
> On Tue, 20 Jul 2004 09:35:42 +0200, [EMAIL PROTECTED]
> <[EMAIL PROTECTED]> wrote:
> > Hi
> > 
> > Is it possible to disable the new way of display the dependency download
> > progression (the increasing number of downloaded kb) ?
> > 
> > The reason is that we call maven from JBuilder, and the JBuilder output
> > console can only appends data, this means that the log is :
> > 
> > 9/3409K 16/3409K 18/3409K 26/3409K 34/3409K 44/3409K 52/3409K 61/3409K 69/3409K 
> > 78/3409K 79/3409K 87/3409K 96/3409K 106/3409K  ... downloaded
> > 
> > (the line is 5000 char longs ...)
> > 
> > which make the output mostly useless
> > 
> > Thanks
> > 
> > Julien
> > 
> > This message and any attachments (the "message") is
> > intended solely for the addressees and is confidential.
> > If you receive this message in error, please delete it and
> > immediately notify the sender. Any use not in accord with
> > its purpose, any dissemination or disclosure, either whole
> > or partial, is prohibited except formal approval. The internet
> > can not guarantee the integrity of this message.
> > BNP PARIBAS (and its subsidiaries) shall (will) not
> > therefore be liable for the message if modified.
> > 
> > -
> > 
> > Ce message et toutes les pieces jointes (ci-apres le
> > "message") sont etablis a l'intention exclusive de ses
> > destinataires et sont confidentiels. Si vous recevez ce
> > message par erreur, merci de le detruire et d'en avertir
> > immediatement l'expediteur. Toute utilisation de ce
> > message non conforme a sa destination, toute diffusion
> > ou toute publication, totale ou partielle, est interdite, sauf
> > autorisation expresse. L'internet ne permettant pas
> > d'assurer l'integrite de ce message, BNP PARIBAS (et ses
> > filiales) decline(nt) toute responsabilite au titre de ce
> > message, dans l'hypothese ou il aurait ete modifie.
> > 
> > -
> > 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: New dependency download display

2004-07-20 Thread Dion Gillard
I too would like this feature.

On Tue, 20 Jul 2004 09:35:42 +0200, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> Hi
> 
> Is it possible to disable the new way of display the dependency download
> progression (the increasing number of downloaded kb) ?
> 
> The reason is that we call maven from JBuilder, and the JBuilder output
> console can only appends data, this means that the log is :
> 
> 9/3409K 16/3409K 18/3409K 26/3409K 34/3409K 44/3409K 52/3409K 61/3409K 69/3409K 
> 78/3409K 79/3409K 87/3409K 96/3409K 106/3409K  ... downloaded
> 
> (the line is 5000 char longs ...)
> 
> which make the output mostly useless
> 
> Thanks
> 
> Julien
> 
> This message and any attachments (the "message") is
> intended solely for the addressees and is confidential.
> If you receive this message in error, please delete it and
> immediately notify the sender. Any use not in accord with
> its purpose, any dissemination or disclosure, either whole
> or partial, is prohibited except formal approval. The internet
> can not guarantee the integrity of this message.
> BNP PARIBAS (and its subsidiaries) shall (will) not
> therefore be liable for the message if modified.
> 
> -
> 
> Ce message et toutes les pieces jointes (ci-apres le
> "message") sont etablis a l'intention exclusive de ses
> destinataires et sont confidentiels. Si vous recevez ce
> message par erreur, merci de le detruire et d'en avertir
> immediatement l'expediteur. Toute utilisation de ce
> message non conforme a sa destination, toute diffusion
> ou toute publication, totale ou partielle, est interdite, sauf
> autorisation expresse. L'internet ne permettant pas
> d'assurer l'integrite de ce message, BNP PARIBAS (et ses
> filiales) decline(nt) toute responsabilite au titre de ce
> message, dans l'hypothese ou il aurait ete modifie.
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-- 
http://www.multitask.com.au/people/dion/

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



New dependency download display

2004-07-20 Thread julien . kirch
Hi

Is it possible to disable the new way of display the dependency download
progression (the increasing number of downloaded kb) ?


The reason is that we call maven from JBuilder, and the JBuilder output
console can only appends data, this means that the log is :

9/3409K 16/3409K 18/3409K 26/3409K 34/3409K 44/3409K 52/3409K 61/3409K 69/3409K 
78/3409K 79/3409K 87/3409K 96/3409K 106/3409K  ... downloaded

(the line is 5000 char longs ...)

which make the output mostly useless

Thanks

Julien




This message and any attachments (the "message") is
intended solely for the addressees and is confidential. 
If you receive this message in error, please delete it and 
immediately notify the sender. Any use not in accord with 
its purpose, any dissemination or disclosure, either whole 
or partial, is prohibited except formal approval. The internet
can not guarantee the integrity of this message. 
BNP PARIBAS (and its subsidiaries) shall (will) not 
therefore be liable for the message if modified. 

-

Ce message et toutes les pieces jointes (ci-apres le 
"message") sont etablis a l'intention exclusive de ses 
destinataires et sont confidentiels. Si vous recevez ce 
message par erreur, merci de le detruire et d'en avertir 
immediatement l'expediteur. Toute utilisation de ce 
message non conforme a sa destination, toute diffusion 
ou toute publication, totale ou partielle, est interdite, sauf 
autorisation expresse. L'internet ne permettant pas 
d'assurer l'integrite de ce message, BNP PARIBAS (et ses
filiales) decline(nt) toute responsabilite au titre de ce 
message, dans l'hypothese ou il aurait ete modifie.


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