RE: how to use ?

2008-11-26 Thread Rebhan, Gilbert
-Original Message- From: ndario [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 26, 2008 3:54 PM To: user@ant.apache.org Subject: how to use ? /* Hello, I want to copy a set of files to a directory which is dynamically generated. I know only a part of name of that directory, it loo

specify xmlcatalog verbose and CatalogManager.properties

2008-11-26 Thread David Crossley
I am trying to get the "xmlcatalog" element of the XmlValidate task to be verbose. Well really it is the verbosity level of the Apache XML Commons Resolver which is used by "xmlcatalog". One way to do this is with a CatalogManager.properties file. The directory that contains this file, needs to be

Re: How to figure out what is in my class path?

2008-11-26 Thread David Crossley
dave.alvarado wrote: > Hi David, > > > DEBUG: project.class.path.property = > "${project.class.path}" > > > > I followed your suggestion, only I put the FAIL statement in the target being > executed ... > > but what is printed out on the screen is > > /export/third-party/etsbea/sta

Re: SCP and SSHExec tasks

2008-11-26 Thread David Crossley
Rez wrote: > > Is it possible to create the directories on the remote server on the fly as > the scp ant task is executed or do I need to run sshexec to create them first? At Apache Forrest our "forrestbot" can deploy using the Ant scp task. It does certainly successfully create new remote dire

get a list of directories with apache ant

2008-11-26 Thread minifish
any one know how to get a list of directories file and file size with apache ant similar to "ls -la". Thank you very very much. -- View this message in context: http://www.nabble.com/get-a-list-of-directories-with-apache-ant-tp20707851p20707851.html Sent from the Ant - Users mailing list archive

Re: SCP and SSHExec tasks

2008-11-26 Thread Robert Anderson
The scp task will not create remote directories. Also, there is no recursive option. Yes, you can specify a fileset, but the directory structure will not be preserved (as far as I know). If you are moving a bunch of files and want to preserve the directory structure, the best thing to do is... 1.

Re: Zip files: elegant way of remapping directories while extracting?

2008-11-26 Thread Stefan Bodewig
On 2008-11-26, Brown, Carlton <[EMAIL PROTECTED]> wrote: > Here is my fantasy code that would accomplish the as elegantly > as the can be peformed in actuality: > > > > > wouldn't that be the globmappers should ignore all files

Zip files: elegant way of remapping directories while extracting?

2008-11-26 Thread Brown, Carlton
I am wondering how I can extract selected directores from a zip file while performing granular re-mapping of multiple directories. I have tried various techniques with but cannot find the case I'm looking for. The task allows the simple convenience re-mapping of directory structures by using a

AW: ****SPAM**** how to use ?

2008-11-26 Thread Knuplesch, Juergen
Who creates this dir? Who knows the name? The best way is to pass the information on to your antfile. -- Jürgen Knuplesch -Ursprüngliche Nachricht- Von: ndario [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 26. November 2008 15:54 An: user@ant.apache.org Betreff: ***

Re: Using geebis

2008-11-26 Thread dgodbey
I did get it to work by putting in a configurations element. Did I do this correctly? Thanks, Dave Maarten Coene wrote: > > I don't have a problem downloading that library: > > [ivy:retrieve] downloading > http://ivyrep.

how to use ?

2008-11-26 Thread ndario
Hello, I want to copy a set of files to a directory which is dynamically generated. I know only a part of name of that directory, it looks like this "tmp*abc": tmp24235abc tmp76957abc tmp556abc tmp6344abc I need to copy files to a directory which has latest creation date. I guess it would be p

Re: SCP and SSHExec tasks

2008-11-26 Thread Steve Loughran
Rez wrote: Hi Is it possible to create the directories on the remote server on the fly as the scp ant task is executed or do I need to run sshexec to create them first? I use sshexec first, with a mkdir -p as the command. I also have a couple of presetdef definitions to simplify making com

RE: Find a properties location

2008-11-26 Thread ext-simon.steiner
Hi, Also how can I get a list of all ant files? We use this but this only includes files with targets not ones with only properties. Map targets = project.getTargets(); Iterator targetsIter = targets.values().iterator(); while (targetsIter.hasNext()) { Target target = (Target) targetsIter.next(