[ANN] Apache AntUnit 1.0 Beta 1 Released

2006-09-21 Thread Stefan Bodewig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The Ant Team is proud to announce the first Beta release of Apache AntUnit 1.0. AntUnit is an Ant Library - a library of tasks - that was initially developed to write tests for Ant tasks without resorting to JUnit. It makes it easy to turn an existin

Re: xmlproperty and multiple matches

2006-09-21 Thread Dominique Devienne
I am attempting to use xmlproperty to load an xml file and then read some attributes in it, however I have multiple matches. For example, my xml file can be structured as such: And I need to get the path value for the profile the name of which is "default". Is there a way to sp

xmlproperty and multiple matches

2006-09-21 Thread Irene Ros
Hello, I am attempting to use xmlproperty to load an xml file and then read some attributes in it, however I have multiple matches. For example, my xml file can be structured as such: And I need to get the path value for the profile the name of which is "default". Is there

Re: any suggestions how to work with nunit?

2006-09-21 Thread Stefan Bodewig
On Wed, 20 Sep 2006, Mark Modrall <[EMAIL PROTECTED]> wrote: > On the broken xml issues, those seem to be strictly bugs > with nunit-console (in my opinion); Agreed. In my experience the output is confusing the hell out of CruiseControl.NET as well, but most of the time it "somehow"

Re: Copying, filtering

2006-09-21 Thread Daniel Blaukopf
Hi Kofa, If you wanted to use vanilla Ant, here's one option:

Re: Copying, filtering

2006-09-21 Thread Mathieu Champlon
Hello, You can use along with from ant-contrib, something like : Then your targets would look like : I hope this helps. MAT. Kovács István a écrit : Hi, I need to copy files from m

Copying, filtering

2006-09-21 Thread Kovács István
Hi, I need to copy files from multiple directories to a single deployment target directory. In the process, I need to replace a few strings. A filter embedded in the copy task allows me to do that, but it would corrupt the binary files, so I copy text files with the filter, binary files without i

Copy Linked files with scp

2006-09-21 Thread Benjamin H.
Hi, following skript-part download package of files to make some diffs. Download von ${host} This days a problem gets up. In the directory are some linked-files. Following error resulted: BUILD FAILED C:\workspace\Synchro - Tool\Monitori

Re: AW: Getting the called target or ant cmd parameters

2006-09-21 Thread Felix Seeger
Thanks, already using wrappers in other project. Looks like I have to use a init target... Felix Am Thursday, 21. September 2006 11:53 schrieb [EMAIL PROTECTED]: > no, it is not. > You could write a wrapper script, which stores the target in an ant > property. http://marc.theaimsgroup.com/?l=an

AW: Getting the called target or ant cmd parameters

2006-09-21 Thread Jan.Materne
no, it is not. You could write a wrapper script, which stores the target in an ant property. http://marc.theaimsgroup.com/?l=ant-user&m=114123101810971&w=2 Jan >-Ursprüngliche Nachricht- >Von: Felix Seeger [mailto:[EMAIL PROTECTED] >Gesendet: Donnerstag, 21. September 2006 11:40 >An: A

Getting the called target or ant cmd parameters

2006-09-21 Thread Felix Seeger
Hi all, is it possible to find out the initially called target, e.g ant clean the target I like to get is "clean" ? My problem is that I call an antfile from the project itself. I like to skip this for one target name. Sure I could add dependencies... but I don't like to do this here. Thanks