Re: Ant cannot find a file, but it's there

2005-04-29 Thread James Adams
Thanks for the heads up Matt. Actually this does appear to be an Eclipse problem, as I can run the target from the command line without getting the missing file error. --James > > To quickly eliminate Eclipse from the list of > suspects, can you successfully execute the build from > the comma

Re: Ant cannot find a file, but it's there

2005-04-29 Thread Matt Benson
To quickly eliminate Eclipse from the list of suspects, can you successfully execute the build from the command-line? -Matt --- James Adams <[EMAIL PROTECTED]> wrote: > I am executing an Ant target which worked well a few > days ago, and now it complains that a file isn't > found. I can see the f

Ant cannot find a file, but it's there

2005-04-29 Thread James Adams
I am executing an Ant target which worked well a few days ago, and now it complains that a file isn't found. I can see the file in the directory tree so I know it's there. Other Ant targets in the same build.xml are working fine. I'm not sure if this is a problem with Ant or with the task being run

Re: extracting project revision number

2005-04-29 Thread Andre Charbonneau
Hi, This works perfectly! :-) Thanks a lot for your help!! Andre Ivan Ivanov wrote: Hello Andre, Assuming we have a file called build.number that contains the single line: build.revision="$Rev: 24 $" here is a sample snippet that will might help you: ${line} $${version} = ${version} He

Removing paths from property file

2005-04-29 Thread Nicolas Vervelle
Hi, To optimize the upload of a lot of files on a website, I am using to upload only the modified files. creates a property file like this : #Thu Apr 28 20:00:01 CEST 2005 E\:\\Java\\Jmol- web\\build\\html\\fah\\projects\\p934.xyz.gz=81545359e168268a133071d58e7 bcfa7 E\:\\Java\\Jmol- web\\bui

Re: exception using javah task in 1.6.3

2005-04-29 Thread Maurice Feskanich
Hi Antoine, Thanks for the info. I have created Bugzilla report #34681 for this issue. Maury Antoine Levy-Lambert wrote: > Hello Maurice, > > The class which is trying to use com.sun.tools.javah.oldjavah.Main is > src/main/org/apache/tools/ant/taskdefs/optional/javah/SunJavah.java > http://cv

Re: extracting project revision number

2005-04-29 Thread Ivan Ivanov
Hello Andre, Assuming we have a file called build.number that contains the single line: build.revision="$Rev: 24 $" here is a sample snippet that will might help you: ${line} $${version} = ${version} Here we use propertyregex task[2] from ant-contrib[1]. HTH Ivan [1]http://ant-c

Re: Can I use ant for this

2005-04-29 Thread Alexey N. Solofnenko
Hello Kishore, Usually installer manufacturers provide a way to run installers silently. I would consult documentation or contact the company that wrote your installer toolkit about this feature. - Alexey. Kishore Sockalingam wrote: Hello I am planning to automate the deployment process using a

RE: extracting project revision number

2005-04-29 Thread Bill Rich
can be used to remove the unwanted parts. HTH Bill -Original Message- From: Andre Charbonneau [mailto:[EMAIL PROTECTED] Sent: Friday, April 29, 2005 8:19 AM To: user@ant.apache.org Subject: extracting project revision number Hi, I would like to extract the Subversion build number of my

extracting project revision number

2005-04-29 Thread Andre Charbonneau
Hi, I would like to extract the Subversion build number of my project and use this to name my release files (tar.gz). What I thought of doing is to put a Subversion tag in my build.properties file. Something like the following: build.revision="$Rev: 24 $" That way, the build number will be in

RE: properties not being reset

2005-04-29 Thread George Dibi
This is what the problem was. Thanks -Original Message- From: Rainer Noack [mailto:[EMAIL PROTECTED] Sent: Thursday, April 28, 2005 3:03 PM To: 'Ant Users List' Subject: RE: properties not being reset Try something like this: > > > > > > > value="build_isoft36.properties"/> > > >

RE: Using ANT to build Synergy applications

2005-04-29 Thread Declan McCann
I'll have a look into these, Thanks for the tip Declan McCann ICScomputing limited 205 Airport Road West Belfast BT3 9ED * Switchboard: ++44 (028) 9045 4166 * Direct:++44 (028) 9056 7278 * FAX: ++44 (028) 9056 7212 * [EMAIL PROTECTED] -Original Message---

Re: Using ANT to build Synergy applications

2005-04-29 Thread Antoine Levy-Lambert
You can consider 1) in a first phase, using ant just as a wrapper, and call your old batches (using the exec task) 2) replacing incrementally your batches by custom tasks The second solution can be the best, will require that you do some development. There are plenty of resources (ant manual, wik

Using ANT to build Synergy applications

2005-04-29 Thread Declan McCann
We have a system written in Synergy and are currently building it on windows using a set of DOS batch files and building it on OpenVMS using a set of DCL command files. We would like to use a proper build tool for this. Is it possible to configure ANT to work with languages other than java,

Re: Ant 1.6.3 release

2005-04-29 Thread Peter Reilly
Tis' done (in head and 1.6 head) Peter Antoine Levy-Lambert wrote: But the index.xml/index.html must be slightly corrected, it says that the online manual is for ant 1.6.2. I am not online now, so if another committer can fix it (in the HEAD branch) it will be good. Cheers, Antoine --- Stefan Bo

Re: Ant 1.6.3 release

2005-04-29 Thread Antoine Levy-Lambert
But the index.xml/index.html must be slightly corrected, it says that the online manual is for ant 1.6.2. I am not online now, so if another committer can fix it (in the HEAD branch) it will be good. Cheers, Antoine > > --- Stefan Bodewig <[EMAIL PROTECTED]> wrote: > > Either you've been too earl

Re: Ant 1.6.3 release

2005-04-29 Thread Ivan Ivanov
--- Stefan Bodewig <[EMAIL PROTECTED]> wrote: > Either you've been too early or your Proxy or your > browser cache is > delivering old content. > > Stefan Thank you, Stefan, the culprit was my browser's cache. Ivan __ Do You Yahoo!? Tired of spam

Re: Ant 1.6.3 release

2005-04-29 Thread Stefan Bodewig
On Fri, 29 Apr 2005, Ivan Ivanov <[EMAIL PROTECTED]> wrote: > I saw that on Ant home page, still Ant 1.6.3beta1 is promoted and > there is no section for Ant 1.6.3. Either you've been too early or your Proxy or your browser cache is delivering old content. Stefan ---

Re: Ant 1.6.3 release

2005-04-29 Thread Ivan Ivanov
Dear Colleagues, Last night I downloaded Ant 1.6.3 to give it a try. However, I saw that on Ant home page, still Ant 1.6.3beta1 is promoted and there is no section for Ant 1.6.3. Wouldn't it be more appropriate if such a section is added too? Thank you Ivan _

Can I use ant for this

2005-04-29 Thread Kishore Sockalingam
Hello I am planning to automate the deployment process using ant.I got only test.jar file.When I try to run the file the installer installs the application and asks for any one application server(weblogic,websphere etc) and the database server.Once I give all the details the insallion will be done