Re: Ant for non-java development

2005-06-10 Thread Bevan Arps
[EMAIL PROTECTED] wrote: Can ant be used to build non-java applications? Absolutely. A few years ago, I used Ant to build an entire suite of Delphi applications - it was the core of our repeatable build process. I forget the exact details, but a fair summary would be: -- Start from a set

RE: Ant for non-java development+addition

2005-06-06 Thread Jeffrey E Care
Lead WebSphere Build Tooling Lead (Project Mantis) https://w3.opensource.ibm.com/projects/mantis <[EMAIL PROTECTED]> 06/06/2005 05:47 PM Please respond to "Ant Users List" To cc Subject RE: Ant for non-java development+addition Thank you guys for all your answers.It is g

RE: Ant for non-java development+addition(2)

2005-06-06 Thread hind.lwahhabi
2005 23:47 To: user@ant.apache.org Subject: RE: Ant for non-java development+addition Thank you guys for all your answers.It is great to see your responsivenes! I am trying to be more precise here: has anyone used ant for building c applications on mainframe for instance?And is it a reasonable solution for su

RE: Ant for non-java development+addition

2005-06-06 Thread hind.lwahhabi
Lwahhabi. -Original Message- From: Henrik Gemal [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 18:51 To: Ant Users List Subject: Re: Ant for non-java development I use ant to build my Mozilla extensions Launchy and Linky Ant build files (build.xml and build.properties and

Re: Ant for non-java development

2005-06-06 Thread Henrik Gemal
I use ant to build my Mozilla extensions Launchy and Linky Ant build files (build.xml and build.properties and build.apps.properties) here: http://mozdev.org/source/browse/launchy/source/ [EMAIL PROTECTED] wrote: Can ant be used to build non-java applications?If so, how ?And does anyone tried

RE: Ant for non-java development

2005-06-06 Thread ed . wittmann
] Sent: Monday, June 06, 2005 11:22 AM To: user@ant.apache.org Subject: Re: Ant for non-java development [EMAIL PROTECTED] wrote: >Can ant be used to build non-java applications?If so, how ?And does anyone tried this on this list? > Well, if you are familiar with Ant, you may find it convini

RE: Ant for non-java development

2005-06-06 Thread CLAVIER Remi RD-CORE-LAN
I use ant to automatize the analyse of Request For Proposal (Call for tender). I use no specific java topics but only xslt transform, specific tools (exec,...)Ant allows an automatisation, securisation and optimisation of the process. Result is very usefull... -Message d'origine- De

Re: Ant for non-java development

2005-06-06 Thread Emmanouil Batsis
[EMAIL PROTECTED] wrote: Can ant be used to build non-java applications?If so, how ?And does anyone tried this on this list? Well, if you are familiar with Ant, you may find it convinient to use for non-Java projects... all of it's functionality is relevant with the exception of the javac

Re: Ant for non-java development

2005-06-06 Thread Frank W. Zammetti
I used Ant to build a C library that was to be used from a Java app... since they were interrelated, it kind of made sense to have them build together. I don't know if there are pre-existing tasks to do it, but I just wrote my own using Exec to call the C compiler, after doing some minor setups fo