concat task does no up-to-date checking

2002-08-26 Thread Martin Monsorno
It seems the concat tast does not compare the timestamps of the source and destination files. This is bad, because the files are re-made in every build, and so the jars containing these files are re-made too, and so on. -- Martin -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

Add file with complete path to zip-file

2002-07-17 Thread Martin Monsorno
Hi, though searching through the docs and the mailing-list, I haven't found a solution for this. What I want to do is to add a file that I have referenced as a property containing the complete path to the file to a zip-file, but without the path. I played around with filesets, includes,

Re: Including files in build files

2002-07-08 Thread Martin Monsorno
Nicola Ken Barozzi [EMAIL PROTECTED] writes: Also, users, what would you like to see in an import top-level tag? As I suppose, one of the most valuable things with ant would be an import tag together wit the possibility to overwrite and extend a target defined in an included buildfile, in the

processing files in fileset in defined order

2002-07-03 Thread Martin Monsorno
Is it possible to make a task working on a given fileset in a given order? What I have to do is processing some sql scripts in a defined order, but I want to spare specifying one sql-task per script. -- Martin -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

line break in classpath-line in manifest

2002-04-30 Thread Martin Monsorno
When building a jar with the jar task, and specifying a manifest-file which contains a classpath line longer than 72 chars, ant will break this line at column 72. Now, does anybody knows, if the resulting classpath line, e.g. Class-Path: crimson.jar some-other.jar log4j.jar jbl.jar blubb.jar

Re: How do I indicate that a target is a main target?

2002-03-26 Thread Martin Monsorno
Christian Holmqvist, IT, Posten [EMAIL PROTECTED] writes: Hi! When ant -projecthelp is preformed there is three categories of targets. How do I indicate that a target is a main target and not a subtarget? just add a description attribute to the target-element. -- Martin -- To

Re: How to warn when jar-file in classpath does not exist?

2002-02-15 Thread Martin Monsorno
you always define two more targets: one that contains the available-task, and one that is called depending on the available-set-property that does the appropriate things. -- Martin Monsorno mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e

How to warn when jar-file in classpath does not exist?

2002-02-14 Thread Martin Monsorno
over to the java compiler. Even with -v there is no error message printed. Is this the desired behaviour? Can I make ant print a warning message to the screen in case the file does not exist? Or must I check the file myself? -- Martin Monsorno mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail

Re: How to warn when jar-file in classpath does not exist?

2002-02-14 Thread Martin Monsorno
removes the file cliently from the path, so that even the warnings jikes would provide are lost. -- Martin Monsorno mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: delete doesn't find files ending with ~

2002-02-11 Thread Martin Monsorno
the chapter Directory based Tasks of the ant manual for details.. -- Martin Monsorno mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [ANN] Collecting requirements for Ant2

2001-03-15 Thread Martin Monsorno
I subscribed to mailing list just a few days ago, so I fear I missed the start of this thread. Can someone tell me where to find the wishlist? -- Martin Monsorno mailto:[EMAIL PROTECTED]

how to print out paths

2001-03-15 Thread Martin Monsorno
nested path elements. As I think, the most convenient way to achieve this would be if you can access a path as a property value, such that path id="a.path" ... /path ... echo message="${a.path} / would print the whole path. Does somebody know how to achieve this? -- Martin

Re: Problems with CLASSPATH

2001-03-14 Thread Martin Monsorno
set /path target name="compile" rmic base="${deploy.home}/servletclasses" includes="**/*Impl.class" classpath refid="project.class.path" / /rmic /target /project Thanks for any and all help! -Larry -- Martin Monsorno mailto:[EMAIL PROTECTED]