RE: Retrieve modified, added and deleted files

2006-07-12 Thread Subramani Muniyandi - TLS , Chennai
hi, In netbeans 5.0 , i got 'broken platform reference.' how can i rectify that. DISCLAIMER The contents of this e-mail and any attachment(s) are confidential and intended for the named recipient(s) only. It shall not attach any liability on the originator or HCL or its affiliates. Any vi

AW: XSLT default parameters and Ant-supplied parameters conflict

2006-07-12 Thread Jan.Materne
Reading the question, I thought about and all properties defined there would be passed to the stylesheet. Jan >-Ursprüngliche Nachricht- >Von: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] >Gesendet: Donnerstag, 13. Juli 2006 05:55 >An: Ant Users List >Betreff: Re: XSL

AW: Retrieve modified, added and deleted files

2006-07-12 Thread Jan.Materne
>How can we retrieve a list of files that has been modified, >added and deleted? >Base on these lists, we would like to commit, add and delete >from the SVN. seems like a svn-question to me Jan - To unsubscribe, e-mail:

Retrieve modified, added and deleted files

2006-07-12 Thread wolverine my
Hi! How can we retrieve a list of files that has been modified, added and deleted? Base on these lists, we would like to commit, add and delete from the SVN. Thank you! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: XSLT default parameters and Ant-supplied parameters conflict

2006-07-12 Thread Antoine Levy-Lambert
Hi, this line means that ant will pass to the stylesheet literally ${weekly.end.date} if weekly.end.date is not set. what you would need and which does not exist would be something looking like that : meaning pass the weekly-end-date parameter to XSL if the property weekly.end.

RE: Ant Sql task slow

2006-07-12 Thread eastwoj
that's good to know ..adds to the mystery though. Its a 1.8Ghz processor; 1.00GB RAM -- but the same behavior is witnessed on several machines. I ended up replacing the task with an which runs sqlplus directly to load and execute the statements in the file .. i'm not entirely happy with tha

RE: Ant Sql task slow

2006-07-12 Thread Anderson, Rob (Global Trade)
I just looked at the source for the sql task. Ant will read the file line by line and execute the statements sequentially as they appear in the file, without loading the entire file into memory. The sql task will certainly not be as fast as a native application like sqlplus. What are the specs of t

RE: Ant Sql task slow

2006-07-12 Thread eastwoj
yes. same machine .. i'm wondering if the problem might be something to do with the fact that Ant is using JDBC to execute the statements while sqlplus uses sqlnet. Maybe ant is reading all 23000 statements into memory and that's a problem? -- View this message in context: http://www.nabble.co

RE: Ant Sql task slow

2006-07-12 Thread Anderson, Rob (Global Trade)
That is a lot. Are you running both sqlplus and Ant's sql task on the same machine? In other words is there any difference in the network between where you are running the two. -Rob A > -Original Message- > From: eastwoj [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 12, 2006 10:51 A

XSLT default parameters and Ant-supplied parameters conflict

2006-07-12 Thread cknell
How can I set up my build.xml file to pass Ant command-line parameters to an XSLT stylesheet without clobbering the default values defined in the stylesheet in case a command-line parameter is not supplied? I have an Ant task that performs an XSLT transformation. In the stylesheet I have define

RE: Ant Sql task slow

2006-07-12 Thread eastwoj
around 23,000 insert statements .. -- View this message in context: http://www.nabble.com/Ant-Sql-task-slow-tf1932043.html#a5293969 Sent from the Ant - Users forum at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

RE: Mail task failure

2006-07-12 Thread Anderson, Rob (Global Trade)
Check the library dependencies to make sure all the necessary jars are in $ANT_HOME/lib. It sounds like that is the issue. http://ant.apache.org/manual/install.html#librarydependencies -Rob Anderson > -Original Message- > From: eagerbeaver [mailto:[EMAIL PROTECTED] > Sent: Wednesday, J

RE: Ant Sql task slow

2006-07-12 Thread Anderson, Rob (Global Trade)
How many rows are you inserting? How much data? -Rob A > -Original Message- > From: eastwoj [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 12, 2006 9:39 AM > To: user@ant.apache.org > Subject: Ant Sql task slow > > > I'm trying to execute a sql file using Ant's sql task via a > Ma

Ant Sql task slow

2006-07-12 Thread eastwoj
I'm trying to execute a sql file using Ant's sql task via a Maven goal. The goal passes a file of insert statements to the Ant sql task. When I run the insert statements in the file in sqlplus, they run in a few minutes. Running them via the ant task, though .. takes upwards of 15 mins .. a con

Re: Looking for Ant Experts (US based)

2006-07-12 Thread ilango
Hi I am interested in this. I am US based and I have worked on ANT. Thanks in advance ilango Damon Edwards <[EMAIL PROTECTED]> wrote: We're looking for Ant and build/deployment experts and figured this list is the best place to find them. The position is based in San Mateo, CA, but telecommu

Looking for Ant Experts (US based)

2006-07-12 Thread Damon Edwards
We're looking for Ant and build/deployment experts and figured this list is the best place to find them. The position is based in San Mateo, CA, but telecommuting is an option for the right person. If you are based outside of the US and are interested, still let us know... we have an increa

Mail task failure

2006-07-12 Thread eagerbeaver
The task in my nightly build script keeps failing with the error "Failed to initialise MIME mail: javax.mail.Address". This only started happening when I started using Ant 1.6.5. Email still works when I revert back to using Ant 1.6.2. The JAF 1.1 and Javamail 1.4 jars are in ANT_HOME/lib. So wh

RE: How to execute and assign the output of a command to a property on runtime.

2006-07-12 Thread Rebhan, Gilbert
see Ant Manual / core tasks / exec task outputproperty errorproperty resultproperty example = ... and later in script check the Returncode: +++ RC Shellscript != 0 +++${line.separator} !!

How to execute and assign the output of a command to a property on runtime.

2006-07-12 Thread Maninder Singh \(GR/EIL\)
Hi All, I am novice to Ant. How do I execute a command from within Ant and then assign the value to a property at run time? Thanks in advance for the help. Regards, Maninder Singh - To unsubscribe, e-mail: [EMAIL PROTEC

Re: how to conditionally execute a task

2006-07-12 Thread Nagender Malik
Thanx!! - Original Message - From: "Rémon van Gijn" <[EMAIL PROTECTED]> To: "Ant Users List" ; "Nagender Malik" <[EMAIL PROTECTED]> Sent: Wednesday, July 12, 2006 3:37 PM Subject: RE: how to conditionally execute a task > > In ant you can use the "env" properties, in combination with th

PFunctions: extending Ant's expression language

2006-07-12 Thread Stefano Marsili
This is my first open source (and java) project. PFunctions is an Ant library extending Ant's expression language with functions. It supports: - nested (recursive) property expansion - indexed and named function parameters - generic objects (including null) - function libraries (strings, string

Re: how to conditionally execute a task

2006-07-12 Thread Petar Tahchiev
On 12/07/06, Petar Tahchiev <[EMAIL PROTECTED]> wrote: On 12/07/06, Rémon van Gijn <[EMAIL PROTECTED]> wrote: > > In ant you can use the "env" properties, in combination with the ant-contrib extension that would allow you to create if statements. > > Met vriendelijke groet, > Rémon van Gijn > >

Re: how to conditionally execute a task

2006-07-12 Thread Petar Tahchiev
On 12/07/06, Rémon van Gijn <[EMAIL PROTECTED]> wrote: In ant you can use the "env" properties, in combination with the ant-contrib extension that would allow you to create if statements. Met vriendelijke groet, Rémon van Gijn -Original Message- From: Nagender Malik [mailto:[EMAIL P

AW: how to conditionally execute a task

2006-07-12 Thread Jan.Materne
Use conditional targets. ... ... linux specific stuff windows specific stuff global stuff Jan >-Ursprüngliche Nachricht- >Von: Rémon van Gijn [mailto:[EMAIL PROTECTED] >Gesendet: Mittwoch, 12. Juli 2006 12:07 >An: Ant Users List; Nagender Malik >Betreff: RE: how to c

RE: how to conditionally execute a task

2006-07-12 Thread Rémon van Gijn
In ant you can use the "env" properties, in combination with the ant-contrib extension that would allow you to create if statements. Met vriendelijke groet, Rémon van Gijn -Original Message- From: Nagender Malik [mailto:[EMAIL PROTECTED] Sent: woensdag 12 juli 2006 12:05 To: Ant Grou

how to conditionally execute a task

2006-07-12 Thread Nagender Malik
Hi All, i want to execute a task conditionally based on operating system property. how can we do that. please suggest thanks, Nagender Malik

Re: AW: javac task and JAVA_HOME when calling from Java code

2006-07-12 Thread Florian Hopf
Hi, [EMAIL PROTECTED] schrieb: >> Unable to find a javac compiler; >> com.sun.tools.javac.Main is not on the classpath. >> Perhaps JAVA_HOME does not point to the JDK >> >> JAVA_HOME and property java.home both point to the base dir of the jdk. >> > > really a jDk? > Is there a ${java.home}/b