Pausing Ant

2001-08-17 Thread Kazandjian Erik
Is there a way to let Ant wait for a keystroke ? Thanks Erik

Re: Pausing Ant

2001-08-17 Thread Erik Hatcher
ant | more :) Erik - Original Message - From: Kazandjian Erik [EMAIL PROTECTED] To: 'Ant User' [EMAIL PROTECTED] Sent: Friday, August 17, 2001 12:51 AM Subject: Pausing Ant Is there a way to let Ant way for a keystroke ? Thanks Erik

RE: Pausing Ant

2001-08-17 Thread Kazandjian Erik
I meant within a task. -Original Message- From: Erik Hatcher [mailto:[EMAIL PROTECTED]] Sent: vrijdag 17 augustus 2001 09:59 To: [EMAIL PROTECTED] Subject: Re: Pausing Ant ant | more :) Erik - Original Message - From: Kazandjian Erik [EMAIL PROTECTED] To: 'Ant User'

Re: trouble with ftp

2001-08-17 Thread Nico Seessle
- Original Message - From: Noel Scott [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 17, 2001 3:21 AM Subject: Re: trouble with ftp Hi, I don't have any jar called optional.jar. I assume this is a generic name for the different jars that the optional command rely on.

Re: Pausing Ant

2001-08-17 Thread Erik Hatcher
Ok, then how's this? http://marc.theaimsgroup.com/?l=ant-devm=97560387200491w=2 Try searching the archives of ant-user and ant-dev to find answers for things like this. Erik - Original Message - From: Kazandjian Erik [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday,

Re: sourcesafe problems (error code 193)

2001-08-17 Thread Nico Seessle
- Original Message - From: Will Dyke [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 17, 2001 10:07 AM Subject: RE: sourcesafe problems (error code 193) I've removed the initial $ from vssPath, but unfortunately, the build still fails in the same way.

RE: sourcesafe problems (error code 193)

2001-08-17 Thread Will Dyke
I have determined the source of this problem. For some reason, there was a file called ss in the ${ssdir} directory. On removing this, the build worked. Playing around with exec helped me to determine this error, but perhaps vssget should be rewritten to run ss.exe, rather than just ss (unless

RE: JDependTask problem (ant1.4)

2001-08-17 Thread Stephane Bailliez
As far as I can read from the docs, it is sourcespath not sourcepath -- Stéphane Bailliez Software Engineer, Paris - France iMediation - http://www.imediation.com Disclaimer: All the opinions expressed above are mine and not those from my company. -Original Message- From:

Re: multiple builds

2001-08-17 Thread Glenn McAllister
Richard Emberson wrote: Actually there ought to be an Ant best practices page somewhere There is, more or less: http://cvs.apache.org/viewcvs/~checkout~/jakarta-ant/docs/ant_in_anger.html?rev=1.3.2.1 (Sorry if line wraps break the link...) Glenn McAllister SOMA Networks, Inc.

Incremental updates not working using ejbjar task

2001-08-17 Thread Brian Levine
Hi, This is pretty strange so it could be operator error but... I'm running ANT 1.3 with JDK 1.3 on Win2K. I'm using the the ejbjar task to build a number of EJB JAR files for WebLogic 5.1. I have a rebuild target which does a full clean and then rebuilds everything from scratch. I also have

ejbjar task with EJB Local Interfaces

2001-08-17 Thread Mortland, Andrew
All - I've been using Ant successfully for months to build my EJBs. I have now made the move to Weblogic 6.1, and am attempting to use Local interfaces for the first time. Although I am new to the Local Interfaces, I am able to successfully build an ejb that deploys with no problem. However,

RE: forking multiple spawns

2001-08-17 Thread Steve Wells
Following is the relevant portion of the script - I was finally (seemingly g) able to have Ant stop 2nd time processing via the mibs.done flag. JDMK is available via Sun's JavaSoft site. - target name=mibs depends=init unless=mibs.done - java classname=com.sun.jdmk.tools.MibGen fork=yes arg

Re: Incremental updates not working using ejbjar task

2001-08-17 Thread Conor MacNeill
Brian, I fixed a bug related to this for 1.4 Basically there is a break statement out of place which terminates the jar update prematurely. The best bet would be to grab the second beta for 1.4 and see if it fixes your problem. That will be available in about 24 hours. Conor

Optional Task - CCCheckout

2001-08-17 Thread Anthony Rodriguez
My company uses clearcase and I'm trying to use the CCCheckout task that's included in the 1.4 beta release of ant. Here is the part of my build.xml that defines the task: target name=checkout cccheckout nowarn=true reserved=true comment=Test/ /target Here is what happens when I run

RE: Optional Task - CCCheckout

2001-08-17 Thread Vittoria, Felice
would it be possible for you to supply the init target info? -Original Message- From: Anthony Rodriguez [mailto:[EMAIL PROTECTED]] Sent: Friday, August 17, 2001 12:43 PM To: '[EMAIL PROTECTED]' Subject: Optional Task - CCCheckout My company uses clearcase and I'm trying to use the

RE: Optional Task - CCCheckout

2001-08-17 Thread Vittoria, Felice
Anthony, I reread your email. Unfortunately, I don't have ClearCase so I can't test it.Hopefully someone else on this list can solve the problem. Felice -Original Message- From: Anthony Rodriguez [mailto:[EMAIL PROTECTED]] Sent: Friday, August 17, 2001 1:08 PM To: '[EMAIL

RE: JDependTask (ant1.4 beta1)

2001-08-17 Thread Anthony Rodriguez
Interesting about the comments being incorrect. That would make using the task more difficult. I'm not really trying to checkout a directory or a bunch of files. I'm merely trying to check out one specific file so my task really looks like this: target name=checkout cccheckout

ClearCase ccheckout task (ant1.4)

2001-08-17 Thread T Master
1. You did not say which attribute was not supported. Error reports are nice to read :o) 2. Here is what I have assertained from the source of the task. target name=checkout cccheckout cleartooldir=cleartool_dir_path viewpath=c:/ant_sview/ant_vob/specific.file

javadoc task userdoc error?

2001-08-17 Thread T Master
The ant manual states for javadoc: groups Separates packages on the overview page into whatever groups you specify, one group per table. This performs the same role as the group attribute. You can use either syntax (or both at once), but with the nested elements you can easily specify multiple

Re: Pausing Ant

2001-08-17 Thread Conor MacNeill
Matthew, A couple of points. In Ant 1.4 we will have the ability to run multiple tasks at a time so we need to coordinate access to the user for input. Also, when Ant is embedded in a GUI, there is no way it should be reading from System.in - it needs a way (interface) to interact with the GUI

Re: javadoc task userdoc error?

2001-08-17 Thread Conor MacNeill
Hi, It is actually a bug because a comma separated list should have worked. A workaround is to use a ':' separated list. I've fixed the bug now though. Thanks Conor - Original Message - From: T Master [EMAIL PROTECTED] To: ant user mailist [EMAIL PROTECTED] Sent: Saturday, August 18,

Fw: javac fails inside ANT Compilation of dependent files -

2001-08-17 Thread Michael Quinn
EnvironmentANT : 1.3JDK : 1.3NT4 SP6CygwinHelp I have a scenario where javac behaves as expected OUTSIDE ant, but when launched by ANT (javac task), I get a failure If classA, depends on ClassB, but ClassB exists only as a .java file, then wheh classA is compiled, the javac will

MORE:javac fails inside ANT Compilation of dependent files

2001-08-17 Thread Michael Quinn
Hello all, have sort of resolved the issue, but not quite Remember test proj1 proj2 (build.xml in here) | | com com | | a c | | b d || callee.java caller.java If classpath points to proj1, and I build caller.java from command line, all is fine as the javac