Re: dist:deploy where and how ?

2004-03-07 Thread Herve AGNOUX
Le Samedi 06 Mars 2004 22:39, Emmanuel Venisse a écrit :
>
> Perhaps with this properties :
>
> maven.scp.executable=scp -P port
> maven.ssh.executable=ssh -p port
>

Unfortunately, I say to maven :

maven.ssh.executable=/usr/bin/ssh -l me -p port www.my-little-compagny.com

And maven answers me :

Execute failed: java.io.IOException: java.io.IOException: /usr/bin/ssh -l me 
-p port www.my-little-compagny.com: not found

(with the good values, of course).


-- 
SARL diaam informatique - 04 50 44 26 54
Ingenierie, développements de systèmes d'information
http://www.diaam-informatique.com


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



RE: How to ask Maven to use jars from local drive ?

2004-03-07 Thread dion
Are they in the right location?

Do you have an example?
--
dIon Gillard, Multitask Consulting



<[EMAIL PROTECTED]> wrote on 05/03/2004 09:26:51 PM:

> 
> I have them all in local repository, but it still tries to download.. 
:-( ??
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> 
> Sent: Friday, March 05, 2004 10:11 AM
> To: Maven Users List
> Subject: Re: How to ask Maven to use jars from local drive ?
> 
> 
> Put them in your local repository.
> --
> dIon Gillard, Multitask Consulting
> 
> 
> 
> <[EMAIL PROTECTED]> wrote on 05/03/2004 03:20:19 PM:
> 
> >
> 
> > Hi all,
> >
> 
> > I just started using Maven, I have all the required jars in local
> > drive, how do I ask maven to use them from my drive and not to 
download
> 
> ?
> >
> 
> > Thanks,
> > Chaithanya
> >
> 
> > Confidentiality Notice
> >
> 
> >
> 
> > The information contained in this electronic message and any
> > attachments to this message are intended
> > for the exclusive use of the addressee(s) and may contain
> 
> > confidential or privileged information. If
> > you are not the intended recipient, please notify the sender at
> 
> > Wipro or [EMAIL PROTECTED] immediately
> > and destroy all copies of this message and any attachments.
> >
> 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> 
> 
> Confidentiality Notice
> 
> 
> The information contained in this electronic message and any 
> attachments to this message are intended
> for the exclusive use of the addressee(s) and may contain 
> confidential or privileged information. If
> you are not the intended recipient, please notify the sender at 
> Wipro or [EMAIL PROTECTED] immediately
> and destroy all copies of this message and any attachments.
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


maven.junit.sysproperties question

2004-03-07 Thread David Le Strat
Hello there,

I am using maven.junit.sysproperties in my
project.properties to initialize system properties.

I want to set the JDK
java.util.prefs.PreferencesFactory to a custom class.

When in my unit test, I do:

System.setProperty("java.util.prefs.PreferencesFactory",
"org.apache.jetspeed.prefs.impl.PreferencesFactoryImpl");

The property is set appropriately.

If in my project.properties, I use:

maven.junit.sysproperties=java.util.prefs.PreferencesFactory
java.util.prefs.PreferencesFactory =
org.apache.jetspeed.prefs.impl.PreferencesFactoryImpl

The system property is not set.  Any suggestion on
what I am doing wrong would be greatly appreciated.

Regards,

David Le Strat.

__
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster
http://search.yahoo.com

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



xdoc performance/memory issues

2004-03-07 Thread Joshua Sherwood
I have a question about xdoc and performance. I've been working with 
statcvs to generate my commit log files, and it generates approximately 
1000 commit_log*.xml. When xdoc starts its translation it gets slower 
and slower and after approximately 400 files I get out of memory. If I 
use MAVEN_OPTS=-Xmx512m I get to about 700 files before getting out of 
memory. Each of the xml files themselves do not exceed 100kb in size.

It seems that xdoc is leaking memory, or the xml/xsl parsers are 
leaking. Instead of iterating over the entire directory would the memory 
performance be better by looping in the jelly code of each of the 
files?? Anyone else experienced this

- J

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


Re: Dynamic resource properties

2004-03-07 Thread Gilles Dodinet
With the inner  element of course.. sorry.

Gilles Dodinet wrote:


${your.resources.folder.name}

**/*.properties







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


Re: Dynamic resource properties

2004-03-07 Thread Gilles Dodinet
Daniel,

something like below (not tested) might work :

Project.xml



${your.resources.folder.name}

**/*.properties



Resource.properties
=
application.description = @app.description@
Maven.xml
===



please see http://wiki.codehaus.org/maven/FilteringResources

-- gd

Daniel Frey wrote:

Hi all

I just started with maven. I wonder, if during the build process it is 
possible to complete resources stored as properties with variables.

Example: My resource file Resouce.properties contains the following line:

application.description = The really full long description of my 
application

This data is set in the project.xml too:



…



The really full long description of my application



...



In my resource file, I would like to be able to do something like:

application.description = ${mave.project.description} // or something 
similar

When the original resource file is copied to the target directory, 
maven should replace these variables. Does somebody know how to do this?

Tanks,

Daniel Frey



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


Dynamic resource properties

2004-03-07 Thread Daniel Frey








Hi all

 

I just started with maven. I wonder, if during the
build process it is possible to complete resources stored as properties with
variables.

 

Example: My resource file Resouce.properties contains
the following line:

 

    application.description = The really full long
description of my application

 

This data is set in the project.xml too:

 

    

    …

    

    The really full long description of my
application

    

    ...

    

 

In my resource file, I would like to be able to do
something like:

 

    application.description = ${mave.project.description}
// or something similar

 

When the original resource file is copied to the
target directory, maven should replace these variables. Does somebody know how
to do this?

 

Tanks,

Daniel Frey








smime.p7s
Description: S/MIME cryptographic signature