Re: Very quick question on ANT VAJ

2002-02-25 Thread Glenn A. McAllister
On Mon, 25 Feb 2002 [EMAIL PROTECTED] wrote: Glenn, I saw an article that you authored on VAJ ANT, and I have a quick question for you. (if you don't mind answering !). Let me preface this by saying I haven't used ANT, but my understanding is that it is a type of MAKE utility for JAVA

Re: quick question

2002-02-04 Thread Stefan Bodewig
On Thu, 31 Jan 2002, Igor Fedulov [EMAIL PROTECTED] wrote: Docs don't say that I can do something like this: in nightly builds, that is. unjar src=?? dest=${build.dest} fileset dir=./lib include name=**/*.jar/ include name=**/*.zip/ /fileset /unjar Don't use anything for

quick question

2002-01-31 Thread Igor Fedulov
Dear Ant users: How can I unjar all files in build/lib directory into build directory using unjar? Docs don't say that I can do something like this: unjar src=?? dest=${build.dest} fileset dir=./lib include name=**/*.jar/ include name=**/*.zip/ /fileset /unjar Please help! --

Re: quick question

2002-01-31 Thread Michael Brailsford
As far as I know there is no such thing as an unjar command. Instead use jar x filename which will extract all files from the jar. -Michael On Thu, Jan 31, 2002 at 11:18:39AM -0600, Igor Fedulov wrote: Dear Ant users: How can I unjar all files in build/lib directory into build directory

Re: quick question

2002-01-31 Thread Igor Fedulov
As far as I know there is no such thing as an unjar command. Instead use jar x filename which will extract all files from the jar. There is together with unzip, untar, unjar, unwar and etc in Built-in Tasks/Core Tasks... Best regards, -- HTTP is a stateless protocol, and the Internet is a

A quick question

2002-01-07 Thread Siamack Farshi
Hello Everyone: I would like to use javac 1.4 to compile my projects. My ant uses the javac classic complier which is 1.1 or 1.2. Where should I set the property build.compiler to uses the compiler of my choice. If I use the following in my build.xml, will it work: property name=build.compiler

RE: A quick question

2002-01-07 Thread Ylan Segal
The answer is in the ant manual. Look at Built-In Tasks Javac and read the fifth and sixth paragraphs. Ylan. - Back from my vacation. -Original Message- From: Siamack Farshi [mailto:[EMAIL PROTECTED]] Sent: Monday, January 07, 2002 4:11 PM To: '[EMAIL PROTECTED]' Subject: A quick

RE: A quick question

2002-01-07 Thread Ylan Segal
The explanation on javac seems clear. However when I set the the following: property name=build.compiler value=/usr/java1.2/bin/javac try this: proprty name=build.compiler value=javac1.4/ This is what the manual says.. I have not used it myself, but i do use jikes by setting the

quick question

2001-05-02 Thread Aarti Chandnani
Title: quick question I have written a task of my own. If I make it to be in org.apache.tools.ant.taskdefs.optional package and compile it and add it to the optional jar... Then can i call it with its name , like other optional tasks... or do I still have to call it with taskdef in the xml.

RE: quick question

2001-05-02 Thread Aarti Chandnani
Title: quick question actually i made it an optional jar, dont bother -Original Message-From: Aarti Chandnani Sent: Wednesday, May 02, 2001 1:50 PMTo: '[EMAIL PROTECTED]'Subject: quick question I have written a task of my own. If I make