Error starting modern compiler

2007-03-13 Thread Jacky
Hi guys, I encounter this error when trying to build my project (it works fine previously): BUILD FAILED /www/dist/production/common/build.xml:78: Error starting modern compiler. Line 78 is: encoding="UTF-8"> I have tried: encoding="UTF-8"> encoding="UTF-8"> The error is still the same.

AW: StatSVN publishes stats for Ant

2007-03-13 Thread Jan.Materne
Very nice reports ... Do you now www.ohloh.net ? Jan >-Ursprüngliche Nachricht- >Von: Benoitx [mailto:[EMAIL PROTECTED] >Gesendet: Dienstag, 13. März 2007 08:56 >An: user@ant.apache.org >Betreff: StatSVN publishes stats for Ant > > >Hi *, > >This is a bit more than the usual open sourc

rookie - problem with xdoclet 2 - ANT doesnt work!!

2007-03-13 Thread dr_pompeii
Hello guys i have a problem with xdoclet to create the hbm.xml files related with the composite keys after see in google it seems that the solution is xdoclet2 well after read the information, like http://www.hibernate.org/284.html, i try do use the example configuration and well i used to work

RE: StatSVN publishes stats for Ant

2007-03-13 Thread Priest, James \(NIH/NIEHS\) [C]
This is a GREAT tool! Everyone I've shown this too was really impressed! FYI - I did a quick tutorial on running it with Ant (which I need to add to the StatSVN wiki!) http://www.thecrumb.com/2007/02/26/automated-subversion-reports-wstatsvn -and-ant/ I'm still learning Ant so if there are any mi

Re: [SEC=UNCLASSIFIED] AW: StatSVN publishes stats for Ant

2007-03-13 Thread Benoitx
No, I did not know that site... but StatSVN is now on it! :) http://www.ohloh.net/projects/4681 Thanks for the link! Benoit Jan.Materne wrote: > > Very nice reports ... > Do you now www.ohloh.net ? > > > Jan > >>-Ursprüngliche Nachricht- >>Von: Benoitx [mailto:[EMAIL PROTECTED] >>

mail task

2007-03-13 Thread Alexander Fischuk
Hi, In my network setup ant email task does not work properly. When I try to send email it gives me an error message something like "550 EHLO command requires valid address..." The origins of the error are in MimeMailer and javamail This class does not take into account the property "mail.smtp.

Re: mail task

2007-03-13 Thread Steve Loughran
Alexander Fischuk wrote: Hi, In my network setup ant email task does not work properly. When I try to send email it gives me an error message something like "550 EHLO command requires valid address..." The origins of the error are in MimeMailer and javamail This class does not take into acco

RE: mail task

2007-03-13 Thread Alexander Fischuk
I did not perform too much testing ... but what worked for me is the following hack in MimeMailer.send() method This solution is tested on ant-1.6.5 code under java-1.5 JVM. Of cause you have to run the code with -Dmail.smtp.localhost= code snippet START --

Checking for files in a directory

2007-03-13 Thread Shankar S
Hi, Is there a way in ANT where I could check if a list of files is available/present in a directory instead of having a long list of s under ? Any help will be much appreciated. -Shankar

RE: Checking for files in a directory

2007-03-13 Thread James Oltmans
Have you tried something like the following? ... -Original Message- From: Shankar S [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 13, 2007 6:59 PM To: user@ant.apache.org Subject: Checking for files in a directory Hi, Is there a way in ANT wh

RE: property value setting

2007-03-13 Thread James Oltmans
Any properties set on the command line are always set first before any task is run in ant. Go ahead and set PW90 in a property to its default value. Anytime you use -DPW90="..." on the command line it will be set first and your default variable will not override it. -Original Message- Fr

Re: Checking for files in a directory

2007-03-13 Thread Shankar S
OK let me put it this way .. intead of having 50 for 50 files which makes my build file look ugly .. I want something like define the list of files in a property file and check something like check if the directory contains all the files -Shankar On 3/14/07, James Oltmans <[EMAIL PROTECTED]>

RE: mail task

2007-03-13 Thread Alexander Fischuk
I did not perform too much testing ... but what worked for me is the following hack in MimeMailer.send() method This solution is tested on ant-1.6.5 code under java-1.5 JVM. Of cause you have to run the code with -Dmail.smtp.localhost= code snippet START -