RE: How do I subscribe to Ant CVS messages? (was: Announce ANT-DEV)

2000-01-24 Thread Conor MacNeill
I seem to be getting them after subscribing to ant-dev Conor -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, 25 January 2000 1:18 To: [EMAIL PROTECTED] Subject: How do I subscribe to Ant CVS messages? (was: Announce ANT-DEV) On Tomcat

RE: cvs commit: jakarta-ant build.xml

2000-02-03 Thread Conor MacNeill
I must admit I actually liked the dist directory where it was. It seems strange to me to have the dist directory going out of the project's directory structure (via ../). Seems like a violation of scoping principles :-) The same really applies to the tomcat and watchdog builds. I would like to see

[PATCH] Support for JDK 1.3RC1

2000-02-16 Thread Conor MacNeill
@@ -92,4 +92,8 @@ public void setClass(String v) { value = v; } + +public void setClassname(String v) { + value = v; +} } -- Conor MacNeill [EMAIL PROTECTED] M64 Pty Limited

[PATCH] update documentation for classname attribute

2000-02-18 Thread Conor MacNeill
+pre lt;taskdef name=quot;myjavadocquot; classname=quot;com.mydomain.JavadocTaskquot; /gt;/pre pmakes a task called codemyjavadoc/code available to Ant. The class codecom.mydomain.JavadocTask/code implements the task./p hr -- Conor MacNeill [EMAIL PROTECTED] M64 Pty Limited

RE: Hello, is there anybody in there....

2000-02-22 Thread Conor MacNeill
to be recognised as such :-) Cheers Conor -- Conor MacNeill [EMAIL PROTECTED] M64 Pty Limited -Original Message- From: William Uther [mailto:[EMAIL PROTECTED] Sent: Tuesday, 22 February 2000 8:06 To: ANT-dev-list Subject: Hello, is there anybody in there Hi, I've been playing with ANT

RE: Platform specific code (was: Meta-info on Mac)

2000-02-23 Thread Conor MacNeill
-Original Message- From: Stefano Mazzocchi [mailto:[EMAIL PROTECTED] Sent: Wednesday, 23 February 2000 5:09 To: [EMAIL PROTECTED] Subject: Re: Platform specific code (was: Meta-info on Mac) William Uther wrote: No, I hadn't. I just went searching for it and found:

RE: Unbundling copying support files from the javac task

2000-03-06 Thread Conor MacNeill
Glenn, The problem is that there tends to be other files that end up being copied across that you don't really want. For example, CVS can leave versions of files around when you do an update and there is a conflict., editors can leave backup files, etc. My view is that you should be explicit

RE: cvs commit: jakarta-ant bootstrap.bat

2000-03-18 Thread Conor MacNeill
Jason, On NT you can use setlocal/endlocal which looks a little cleaner. Don't know if it works on 95/98 Conor -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Saturday, 18 March 2000 10:16 To: [EMAIL PROTECTED] Subject: cvs commit: jakarta-ant

[PATCH] Support for multiple source paths in javac

2000-03-22 Thread Conor MacNeill
()); +classpath.append(getSourcePath()); Vector argList = new Vector(); -- Conor MacNeill [EMAIL PROTECTED] M64 Pty Limited

RE: [PATCH] Support for multiple source paths in javac

2000-03-22 Thread Conor MacNeill
Sam, In short, we are slowly accumulating a patchwork quilt of ad-hoc mechanisms. I'd like to propose that in all cases we support nested XML elements. In many cases, I believe that this will be sufficient. If necessary, we can support delimited lists in attributes as an alternate syntax.

RE: I want to become an Ant developer

2000-03-31 Thread Conor MacNeill
Again, sorry... I overreacted... maybe I just need to unsubscribe from this project... I'm not being of any help. -1 :-)

RE: problem with JARing an EJB

2000-04-12 Thread Conor MacNeill
The META-INF/ en cmp/ entries seem to be a problem. Has anyone run into this problem? How are these entries causing a problem? I too build EJB jars with Ant. The jars have these types of entries (directories) but they deploy without any problems. What exactly happens? Cheers Conor

RE: How to participate?

2000-04-18 Thread Conor MacNeill
-Original Message- From: Robin Green [mailto:[EMAIL PROTECTED] I found the similar library on: http://www.alphaworks.ibm.com/tech/jikesbt May be it will be interesting for you. Alphaworks software is normally time-limited or evaluation only AFAIK. I wrote something which sounds

RE: Ant Principles

2000-04-19 Thread Conor MacNeill
From: Kuiper, Arnout [mailto:[EMAIL PROTECTED] Hi, I'm finally catching up. Here are some comments on the current Ant principles: Filenames = I like the idea of having / as a directory separator, and : as a path separator. This makes Ant work more predictably in a X-platform

RE: SAX 1.0 vs SAX 2.0

2000-04-21 Thread Conor MacNeill
1) Stay with SAX 1.0 and accept the deprecation warnings for . Note: there are a *LOT* of deprecation warnings. Screen fulls. Many screen fulls. 2) Stay with SAX 1.0 and turn off deprecation warnings on Ant builds. 3) Go with SAX 2.0. This makes Sun's parser not an

[PATCH] add tools.jar to build.bat classpath

2000-04-27 Thread Conor MacNeill
@@ @echo off REM convience bat file to build with +if exist %JAVA_HOME%\lib\tools.jar set CLASSPATH=%CLASSPATH%;%JAVA_HOME%\lib\tools.jar java -classpath %CLASSPATH%;lib\ant.jar org.apache.tools.ant.Main %1 %2 %3 %4 %5 -- Conor MacNeill [EMAIL PROTECTED] M64 Pty Limited

RE: Ant question - iterative processing

2000-05-02 Thread Conor MacNeill
Ann, I have written a taskdef for running DDCreator and ejbc (We are using WL4.5). It does time dependency checking between the .ser or .txt file and the home/remote interface definitions. So far I have used it for internal purposes and it works quite well. It is a Matching Task so you can do all

RE: Task functionality next version Ant

2000-05-05 Thread Conor MacNeill
-Original Message- From: Kuiper, Arnout [mailto:[EMAIL PROTECTED] Sent: Friday, 5 May 2000 17:59 To: '[EMAIL PROTECTED]' Subject: Task functionality next version Ant Now we are talking about task functionality here, how about defining some for the next version Ant. [snip] Any

Tasks for ejbc compile of weblogic EJBs

2000-05-07 Thread Conor MacNeill
other tasks. Let me know what you think, especially if you are using WebLogic. Cheers Conor -- Conor MacNeill [EMAIL PROTECTED] Cortex ebusiness Pty Limited ? src/main/org/apache/tools/ant/taskdefs/optional/DDCreator.java ? src/main/org/apache/tools/ant/taskdefs/optional/DDCreatorHelper.java ? src

RE: Tasks for ejbc compile of weblogic EJBs

2000-05-08 Thread Conor MacNeill
Just in time - I was about to write my own tasks for this. These classes will not compile with the current public version of Ant, however. The method validateDirectory is not found, and method setProject is available in Task, but is package-scope only. I also notice that your usage

RE: Fixes for org.apache.tools.ant.taskdefs.Javac and org.apache.tools.ant.Project

2000-05-14 Thread Conor MacNeill
Appended to this note are fixes for two related Ant bugs: BUG 1 - Project.translatePath() 1. org.apache.tools.ant.taskdefs.Javac uses Project.translatePath() to convert various paths to native format (i.e., Unix to Win32, etc.). But Project.translatePath() does not always correctly

RE: Windows 98?

2000-05-17 Thread Conor MacNeill
-Original Message- From: Ken Wood [mailto:[EMAIL PROTECTED] Sent: Wednesday, 17 May 2000 5:51 To: [EMAIL PROTECTED] Subject: Re: Windows 98? Not sure why you'd want to build it... I just grabbed the so-called binaries, since they are just jar files, and I've used them

RE: Windows 98? (and now a newbie question..... :)

2000-05-17 Thread Conor MacNeill
-Original Message- From: Rick Yazwinski [mailto:[EMAIL PROTECTED] Sent: Wednesday, 17 May 2000 22:50 To: [EMAIL PROTECTED] Subject: RE: Windows 98? (and now a newbie question. :) There were many problems with method prototypes... sorry, but I can't reproduce it now as I found

RE: A question about available and doing conditionals in a build xml file.

2000-05-17 Thread Conor MacNeill
-Original Message- From: Ken Wood [mailto:[EMAIL PROTECTED] Sent: Thursday, 18 May 2000 0:53 To: [EMAIL PROTECTED] Subject: A question about available and doing conditionals in a build xml file. I don't seem to find much in the documentation on the use of properties set by

RE: Request for Help building with Head co from CVS

2000-05-21 Thread Conor MacNeill
I think you need to install JAXP to run the latest ant. Try http://java.sun.com/xml/download.html -- Conor MacNeill -Original Message- From: Bill Barnhill [mailto:[EMAIL PROTECTED] Sent: Sunday, 21 May 2000 10:24 To: [EMAIL PROTECTED] Subject: Request for Help building with Head co

RE: Call for patches

2000-05-23 Thread Conor MacNeill
Sam, Can I send you one big diff? You would need to pick over the entrails :-) Conor -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness

RE: list archive?

2000-05-26 Thread Conor MacNeill
that was sent to you on subscription for details and remember that the domain name is wrong :-( Conor -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness -Original Message- From: Bernard Davison [mailto:[EMAIL PROTECTED] Sent: Friday, 26 May 2000 11:04 To: [EMAIL PROTECTED] Subject

[PATCH] multithreading tasks

2000-05-28 Thread Conor MacNeill
Team, Attached is a fairly simple patch plus a new class to allow ant to run tasks in separate threads. The motivation for this patch is to allow us to perform unit testing in a relatively automated fashion. In our particular situation we would like to have an ant target for testing which will

RE: Platform independend classpath in build.xml?

2000-05-31 Thread Conor MacNeill
), then it is a bug which we should investigate. I can't reproduce it since my version of translatePath is currently out of sync with CVS. Cheers Conor -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness -Original Message- From: Ken Wood [mailto:[EMAIL PROTECTED] Sent: Saturday, 27 May

RE: Help building today's release of ant...

2000-05-31 Thread Conor MacNeill
Hunter, Erik, Thank you for the help. Ant builds now! : I haven't seen much traffic on [EMAIL PROTECTED] What is the best way to get something like this added to the ant documentation? You can submit a patch to the documentation HTML file that exists in the docs subdirectory of ant.

RE: Platform independend classpath in build.xml?

2000-05-31 Thread Conor MacNeill
Stefan, -Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: Wednesday, 31 May 2000 23:11 To: [EMAIL PROTECTED] Subject: Re: Platform independend classpath in build.xml? JG == Jean-Noel Gadreau [EMAIL PROTECTED] writes: JG Moreover, I think the same problem

RE: Platform independent classpath in build.xml?

2000-05-31 Thread Conor MacNeill
It would be very easy to just use the standard Ant separator for entries (namely a ,) and have ant parse it into the OS dependant separator when required... not problem, instant solution. I don't think , is the standard ant separator. Where does it say this? In fact, when I first tried to

RE: Platform independend classpath in build.xml?

2000-05-31 Thread Conor MacNeill
The point of my mail has been that there has already been a discussion about the PATH issue some weeks ago and that a solution - at least a partial one - was on the way. I just wanted to save us all from some duplicate effort. I didn't want to say this has been done, there will be a

RE: PrintWriter deprecated in the 3.1 build

2000-06-02 Thread Conor MacNeill
\jakarta-ant -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness -Original Message- From: Chaganthi, Madhusudan R. [mailto:[EMAIL PROTECTED] Sent: Friday, 2 June 2000 2:55 To: '[EMAIL PROTECTED]' Subject: RE: PrintWriter deprecated in the 3.1 build Hi All Sorry if I am being

RE: Platform independend classpath in build.xml?

2000-06-05 Thread Conor MacNeill
Looking from a design or architectual point of you, I totally agree. The first implementations where closer to what you are suggesting than to what the current code looks like. It has been built that way to cope with the way Ant uses reflection to load and manipulate objects. The way to look

RE: xml.jar in ant shell script

2000-06-08 Thread Conor MacNeill
Thomas, I posted a patch a while ago for this (message 1182). It has not been applied (no surprise). Conor -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness -Original Message- From: Thomas Haas [mailto:[EMAIL PROTECTED] Sent: Thursday, 8 June 2000 2:11 To: [EMAIL PROTECTED

RE: task with arbitrary classpath

2000-06-14 Thread Conor MacNeill
be found by the helper JVM. Let me know if you need more info. Conor -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness http://www.cortexebusiness.com.au -Original Message- From: Jim Stiefel [mailto:[EMAIL PROTECTED] Sent: Wednesday, 14 June 2000 7:53 To: [EMAIL PROTECTED] Subject

RE: proposal:redirect the output to a file?

2000-06-15 Thread Conor MacNeill
for log -buildfile file use given buildfile -Dproperty=value use value for given property -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness http://www.cortexebusiness.com.au -Original Message- From: Juan Jose Pablos [mailto:[EMAIL PROTECTED] Sent: Thursday, 15 June 2000 10:38

asynchronous tasks

2000-06-17 Thread Conor MacNeill
milliseconds and join joins all current task threads to the main ant thread. The diffs and new classes are attached. If no one objects to these changes, I will commit them next week. Cheers Conor -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au

RE: [PATCH] multithreading tasks

2000-06-18 Thread Conor MacNeill
Duncan, From: James Duncan Davidson [mailto:[EMAIL PROTECTED] Has this been committed? I didn't see a commit message go out on it. In any case I'm -1 on this. No, this has not been committed yet. Let me see if I can work on you to see whether it is a good idea or not? Let me try to address

RE: FAQ (was Re: Junit task)

2000-06-19 Thread Conor MacNeill
Peter, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Peter Nordlund Sent: Monday, 19 June 2000 18:37 To: [EMAIL PROTECTED] Subject: FAQ (was Re: Junit task) Also, of course add the answer to my stupid question! ;-) You can create an account

RE: [VOTE] New Committer: Stefan Bodewig

2000-06-19 Thread Conor MacNeill
+1 Continuing my quest to replenish the Ant development team... Stefan also has been following Ant for quite some time, and also has persisted through the dry spells. In addition to his own patches, he has been helpful with answers, and suggestions to questions that have been posed on

RE: Junit task

2000-06-20 Thread Conor MacNeill
Thomas, However, if it takes longer to build the next so much improved and defently needed version of ANT, I woul like to add JUnit and friends, if welcomed. Bring it on :-). I am currently using JUnit through a Java task. It works, but it is not especially neat. A separate task would be

RE: Can't build ant for RedHat Linux 6.2

2000-06-21 Thread Conor MacNeill
I think it should be sufficient to set JAVA_HOME. -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness http://www.cortexebusiness.com.au -Original Message- From: Peter Donald [mailto:[EMAIL PROTECTED] Sent: Wednesday, 21 June 2000 15:19 To: [EMAIL PROTECTED] Subject: Re: Can't

RE: [PATCH] build events

2000-06-21 Thread Conor MacNeill
in Project.java. I think the two in Main should simply propagate the exception in place of the System.exit. The one in Project should probably be converted to a BuildException. What do you think? Conor -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au

RE: [PATCH] multithreading tasks

2000-06-22 Thread Conor MacNeill
-Original Message- From: James Duncan Davidson [mailto:[EMAIL PROTECTED] on 2000/06/18 05:26, Conor MacNeill at [EMAIL PROTECTED] wrote: Oh, I'm open to being worked on. And hopefully my being pig-headish well help in the long run. :) No doubt :-) Help me out -- give me some

RE: Undocumented attributes

2000-06-22 Thread Conor MacNeill
Bill, The Items and Ignore attributes are deprecated (should probably be removed soon) and so you shouldn't put any effort into documenting those. Conor -Original Message- From: Bill Kelly [mailto:[EMAIL PROTECTED] Sent: Friday, 23 June 2000 0:14 To: [EMAIL PROTECTED] Subject:

RE: problem

2000-06-23 Thread Conor MacNeill
Komal, Just update ant from the latest CVS and build again. I think the error you are seeing was due to a small typo in the default.properties file which was fixed yesterday. Conor -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au

Moving lib directory

2000-06-24 Thread Conor MacNeill
build area (../build/ant). Any issues with that? Conor -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au

RE: nightly build (was: problem)

2000-06-24 Thread Conor MacNeill
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Since this is an all volunteer organization, everyone is empowered to set one up themselves and publish it. OK, but most people looking for an updated build of ant come to jakarta.apache.org. They may not realise

RE: weblogic tasks?

2000-06-24 Thread Conor MacNeill
. I have also two other tasks wlrun and wlstop to start and stop weblogic servers. I haven't published these yet since they are really only useful with my async patch which is still being worked out on the list. Conor -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web

RE: Patch ? old xml.jar library

2000-06-25 Thread Conor MacNeill
Julien, Both Thomas Haas and I put up patches to remove this. I think Thomas was going to commit his unless there were any objections (there were none so far) Conor -Original Message- From: Julien Couvreur [mailto:[EMAIL PROTECTED] Sent: Sunday, 25 June 2000 13:26 To: [EMAIL

RE: cvs commit: jakarta-ant/src/main/com/oreilly/servlet MailMessage.java

2000-06-26 Thread Conor MacNeill
From: Jason Hunter [mailto:[EMAIL PROTECTED] Conor MacNeill wrote: Jason, Why not just make this an optional task. That way you can keep the code in one place and under your control whilst making it available to ant users who have installed your package. Whether a task should

documentation versions

2000-06-27 Thread Conor MacNeill
Hi, I've just updated the documentation. I was wondering where the version number comes from and what is the next logical entry? Conor -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au

RE: Touch task

2000-06-27 Thread Conor MacNeill
Stefan, CM == Conor MacNeill [EMAIL PROTECTED] writes: CM I think a NOP would be misleading. I would prefer to see it CM blowup. Do you think a warning message would be close enough to blowup or would you prefer it to throw a BuildException? I had in mind an exception but I guess

RE: JUnit task and friends

2000-06-27 Thread Conor MacNeill
JUnit has its own concept for handling collections for tests, namely suites. Do we want to overlap that? -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au -Original Message- From: Konstantin Nazarenko [mailto:[EMAIL PROTECTED] Sent

Javadoc patch

2000-06-29 Thread Conor MacNeill
I have applied Patrick's Javadoc patch with a few changes. I change the nested elements from groups to group links to link linkofflines to link offline=yes This seems a little clearer to me since each element only describes a single link or group. I know Patrick wanted to distinguish the nested

RE: Javadoc patch

2000-06-30 Thread Conor MacNeill
Stefan, CM == Conor MacNeill [EMAIL PROTECTED] writes: CM I also added support for multiple source paths. To do this I CM added my PathTokenizer object which I have previously discussed. CM Let me know if there are any issues. Sorry, Connor, must have missed that discussion. Two

RE: mkdir and rmdir / Windows

2000-06-30 Thread Conor MacNeill
-Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: Friday, 30 June 2000 21:23 To: [EMAIL PROTECTED] Subject: Re: mkdir and rmdir / Windows EB == Emmanuel Blot [EMAIL PROTECTED] writes: EB Then, whenever it tries to (re)create the same directory, it EB

RE: mkdir and rmdir / Windows

2000-06-30 Thread Conor MacNeill
-Original Message- We should change deltree and delete to throw an exception if they fail to delete anything then, so you would recognize you open Explorer window in the cleanup phase - or start searching for the coworker who left it open, argh. OK, I've committed the code for that.

RE: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs Delete.java Deltree.java

2000-06-30 Thread Conor MacNeill
Stefan, I thought File.exists() would return false in our case. What does Windows return on File.delete? Could we use that value instead? Actually File.exists does work. My little bit of test code must have been awry. It is actually the access denied that causes problems. I didn't bother to

RE: Error build Ant from CVS

2000-06-30 Thread Conor MacNeill
Try bootstrapping first. -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au -Original Message- From: David Maclean [mailto:[EMAIL PROTECTED] Sent: Friday, 30 June 2000 23:12 To: [EMAIL PROTECTED] Subject: Error build Ant from CVS

RE: Ant build error

2000-06-30 Thread Conor MacNeill
David, Occasionally when a new feature is introduced into a task and that feature is then used in the ant build.xml script, it is necessary to bootstrap ant. Your current version does not yet have the feature necessary to compile the new version of ant. Doesn't happen very often. -- Conor

RE: Ant and Corba projects

2000-06-30 Thread Conor MacNeill
MK == Markus Kohler [EMAIL PROTECTED] writes: MK could -bootclasspath be the solution ? I think so, yes. You will probably want to change the ant shell script or ant.bat directly. You shouldn't need to edit the files. You can use the JAVACMD environment variable to change how ant

self modifying jar?

2000-06-30 Thread Conor MacNeill
%;%TOOLSJAR%;lib\ant.jar org.apache.tools.ant.Main %1 %2 %3 %4 %5 +copy lib\ant.jar lib\antrun.jar +java -classpath %CLASSPATH%;%TOOLSJAR%;lib\antrun.jar org.apache.tools.ant.Main %1 %2 %3 %4 %5 +del lib\antrun.jar -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web

RE: Platform independent classpath in build.xml?

2000-06-01 Thread Conor MacNeill
Brill, I don't think , is the standard ant separator. Where does it say this? It doesn't say it anywhere, but its all over Ant... call it the unwritten rule... Easily broken then ... :-). In fact the current spec proposal (see File Naming Conventions) states that in the build file the path

RE: unless and nested includes/excludes undocumented?!

2000-07-01 Thread Conor MacNeill
-Original Message- From: Vassilis Rizopoulos [mailto:[EMAIL PROTECTED] Sent: Thursday, 29 June 2000 20:35 To: '[EMAIL PROTECTED]' Subject: RE: unless and nested includes/excludes undocumented?! We cannot remove the ambiguity in c:/jdk1.1 but a lot of other things are already

RE: Javadoc patch

2000-07-03 Thread Conor MacNeill
of build.classpath is c:d:\path. I would want that to be understood as a path consisting of c and d:\path. Cheers Conor -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness http://www.cortexebusiness.com.au -Original Message- From: Tom Cook [mailto:[EMAIL PROTECTED] Sent: Monday, 3 July 2000 9:28

RE: Javadoc task problems

2000-07-03 Thread Conor MacNeill
Hi, I've fixed the docletpath problem. Should I send it to anyone? Or should I request commit privileges ? Hmm, I think I'll just check the web site, as I should :) I'll commit the changes if you send them to the list. Concerning the linkoffline problem: There seems to be some supporting

RE: EJB compilation

2000-07-03 Thread Conor MacNeill
? Conor -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au -Original Message- From: Allegar Robert [mailto:[EMAIL PROTECTED] Sent: Saturday, 1 July 2000 5:24 To: [EMAIL PROTECTED] Subject: EJB compilation Hey folks. Sorry

RE: WIBNI for Javac Task

2000-07-04 Thread Conor MacNeill
-Original Message- From: Tom Cook [mailto:[EMAIL PROTECTED] I was under the impression that ant found each source file, and worked out where the destination file would end up, and then do comparisons on them. This works fairly faultlessly for me - are you using the 3.1 release, or

RE: WIBNI for Javac Task

2000-07-04 Thread Conor MacNeill
-Original Message- From: Tom Cook [mailto:[EMAIL PROTECTED] Sent: Tuesday, 4 July 2000 10:23 To: [EMAIL PROTECTED] Subject: RE: WIBNI for Javac Task Forgive my persistence, and it's been a while since I hacked through this code, but I thought ant decided which files to recompile

RE: ANT own nightly builds

2000-07-04 Thread Conor MacNeill
probably be OK :-) -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness http://www.cortexebusiness.com.au -Original Message- From: Peter Donald [mailto:[EMAIL PROTECTED] Sent: Tuesday, 4 July 2000 10:12 To: [EMAIL PROTECTED] Subject: ANT own nightly builds At 02:59 3/7/00 -0500, you

RE: EJB compilation

2000-07-04 Thread Conor MacNeill
From: M . Dietrich [mailto:[EMAIL PROTECTED] i've got one for wls. i can send it to everyone who is interested :) By wls, do you mean weblogic server? I have built a couple of tasks for weblogic 4.5 but I would be happy to incorporate any useful features you may have developed into them. I

RE: [PATCH]: Path, Execution framework, JUnit and JavaCC

2000-07-04 Thread Conor MacNeill
-Original Message- From: Thomas Haas [mailto:[EMAIL PROTECTED] Agree, that managmenet of the basedir must stay in the project object. However the Path should be able to preprocess its output using some base directory. This could be achieved by either adding to Path a reference a

RE: Subpackages of ...taskdefs.optional (was: RE: [PATCH]: Path, Execution framework, JUnit and JavaCC)

2000-07-05 Thread Conor MacNeill
From: Siberski, Wolf [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 July 2000 18:19 To: '[EMAIL PROTECTED]' Subject: Subpackages of ...taskdefs.optional (was: RE: [PATCH]: Path, Execution framework, JUnit and JavaCC) That wouldn't help because we would get as many subpackages as we have

RE: Announcing new Ant nightly builds

2000-07-05 Thread Conor MacNeill
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Goto http://jakarta.apache.org/downloads/binindex.html, and click on the Ant subproject under the nightly builds section. Note: this is a fully bootstrapped build of Ant from source. It actually is just an

RE: Problem building ant with JDK1.3 modern

2000-07-06 Thread Conor MacNeill
William, You are replying to a mail sent about 5 months ago !! This has now been implemented. Get the latest nightly build or the latest code from CVS. http://jakarta.apache.org/builds/ant/nightly/ Conor -Original Message- From: William Ferguson [mailto:[EMAIL PROTECTED] Sent:

cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs Javac.java

2000-07-06 Thread Conor MacNeill
conor 00/07/06 05:30:50 Modified:docs index.html src/main/org/apache/tools/ant/taskdefs Javac.java Log: Add support for multiple source paths to Javac These can either be specified as path strings or nested elements. The path strings use the same separator

cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional NetRexxC.java RenameExtensions.java

2000-07-06 Thread Conor MacNeill
conor 00/07/06 09:48:28 Modified:src/main/org/apache/tools/ant BuildEvent.java Project.java ProjectHelper.java Target.java Task.java TaskAdapter.java src/main/org/apache/tools/ant/taskdefs Ant.java

RE: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional NetRexxC.java RenameExtensions.java

2000-07-07 Thread Conor MacNeill
From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: Friday, 7 July 2000 16:36 To: [EMAIL PROTECTED] Subject: Re: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional NetRexxC.java RenameExtensions.java CM == Conor MacNeill [EMAIL PROTECTED] writes: CM I have left

RE: [PATCH] SignJar task

2000-07-08 Thread Conor MacNeill
these to a \, it works on NT and Linux (RedHat 6.2) I can make the change if you think it is OK. What about usage under JDK 1.1? An exception or a message? -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au -Original Message- From: Peter

RE: Recent logging aint emacs friendly

2000-07-08 Thread Conor MacNeill
Peter, I have also been thinking that a PI that sets the formatter maybe a good idea. Currently I run all my ant output through awk to rewrite build/src/ to src/main again to make it emacs friendly. Because then when you click goto error it goes to error in original source rather than in src

RE: Recent logging aint emacs friendly

2000-07-08 Thread Conor MacNeill
-Original Message- From: Ernst de Haan [mailto:[EMAIL PROTECTED] Sent: Saturday, 8 July 2000 23:22 To: [EMAIL PROTECTED] Subject: Re: Recent logging aint emacs friendly snip Hmm, perhaps the logger can be specified as a parameter for the root element in the build file. /snip

RE: Javadoc task: author and version should be unset by default

2000-07-08 Thread Conor MacNeill
-Original Message- From: Peter Donald [mailto:[EMAIL PROTECTED] Sent: Saturday, 8 July 2000 19:00 To: [EMAIL PROTECTED] Subject: Re: Javadoc task: author and version should be unset by default At 10:48 8/7/00 +0200, you wrote: Yes that does make sense :) I've attached a diff that

RE: Problem with Property Task

2000-07-10 Thread Conor MacNeill
Akbar, Well, changing C:/ and D:/ to C:\ and D:\ made it work (with ant3.1 and classpath concatenation). But I don't understand why. Earlier it worked with C:/ OK - This is why. Say you are running ant from your C: drive and you have put in a path of C:/test. The version of translatePath

RE: WebLogic 4.x EJB Tasks

2000-07-10 Thread Conor MacNeill
Paul, From: Paul Hodgetts [mailto:[EMAIL PROTECTED] I've been using the new WebLogic 4.x EJB tasks and I have a few comments/questions. These tasks are very cool and help us out a whole lot with our builds. Thank you! Thanks for the feedback. DDCreator works great. No issues there.

RE: Using old ant.jar in build.bat?

2000-07-10 Thread Conor MacNeill
I think this issue comes down to the role of build.bat/build.sh in the jakarta-ant project root. Is it intended just to build ant or is it used to run ant as well? It has been my expectation that it is used just to build ant in the local directory. When using ant outside ant itself I have always

RE: Using old ant.jar in build.bat?

2000-07-10 Thread Conor MacNeill
-Original Message- From: Ken Wood [mailto:[EMAIL PROTECTED] Sent: Tuesday, 11 July 2000 7:04 To: [EMAIL PROTECTED] Subject: Re: Using old ant.jar in build.bat? I plead Chicken and the Egg... syndrome... Pretend I don't have any version of ant on my computer at all. If I START

RE: Using old ant.jar in build.bat?

2000-07-11 Thread Conor MacNeill
In other words: - If you are a user: press 1 - If you promise to develop code for ANT: press 2, 3, 4, 5 - If you are a user but like to have the code arround: press 1 and 2 - If you trying to convice your sysadmin to use ANT: pray that he does not want to download the surce code himself.

RE: Javadoc linkoffline

2000-07-11 Thread Conor MacNeill
on the way the implementation orders it arguments. That could change. The better approach is to use the new link nested element. Have a look at the latest documentation for an example of how to use it. In fact I think we should deprecate the link and linkoffline attributes. Conor -- Conor MacNeill

SourceSafe Task

2000-07-12 Thread Conor MacNeill
Andi, I have seen it - it is in my list of things to get around to. Hang in there. -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness http://www.cortexebusiness.com.au -Original Message- From: Everitt, Andrew [mailto:[EMAIL PROTECTED] Sent: Tuesday, 11 July 2000 22:02

RE: Task Names vs Class Names ?

2000-07-12 Thread Conor MacNeill
defaulting to the tasktype by default. Conor -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au -Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 July 2000 17:26 To: [EMAIL PROTECTED] Subject: Re

RE: Problem with javac task and JDK 1.1

2000-07-12 Thread Conor MacNeill
Russell, Are you running on NT/windows - check the system32 directory. The JDK installer throws a copy in there unfortunately. Conor -- Conor MacNeill Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] Web: www.cortexebusiness.com.au -Original Message- From: Russell Gold [mailto

RE: Feedback on first uses of Ant

2000-07-12 Thread Conor MacNeill
Peter, Also, javadoc requires all the package names. As far as I know, you can't say all the packages below this directory, yup :P. People have commented on this before. Really? I use the following property name=javadoc.packages value=com.*/ javadoc

RE: Task Names vs Class Names ?

2000-07-12 Thread Conor MacNeill
-Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 July 2000 21:20 To: [EMAIL PROTECTED] Subject: Re: Task Names vs Class Names ? Yup, going to add that as well. Add a taskType property (with setter, no getter?) and set this in

RE: When are you guys going to slow down ;-)

2000-07-12 Thread Conor MacNeill
My list 1. New versions of bootstrap/build/ant (I have the NT version just about done - Unix soon) 2. ejb task for WL 5.1 3. documentation for optional.ejb tasks 4. VSS task if Stefan doesn't get there first 5. Better win98 support I'd like to get the async task operation in there as well but I

RE: Question on JavaDoc - multiple source directories

2000-07-12 Thread Conor MacNeill
Ciaran, Try the latest build. I added multiple source directory support to the javadoc task recently. It uses the standard ant path separators (':' or ';'). Conor -Original Message- From: Treanor,Ciaran [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 July 2000 22:33 To: '[EMAIL

RE: Spurious Output

2000-07-14 Thread Conor MacNeill
-Original Message- From: William Ferguson [mailto:[EMAIL PROTECTED] Sent: Friday, 14 July 2000 9:11 To: [EMAIL PROTECTED] Subject: Spurious Output Hi all, I was wondering what is the typical approach to removing spurious output from the build? Ie If I have a Task that generates

RE: javac Task Using Jikes with Large Number of Files

2000-07-14 Thread Conor MacNeill
bundles. -- Conor MacNeill [EMAIL PROTECTED] Cortex eBusiness http://www.cortexebusiness.com.au -Original Message- From: Paul Hodgetts [mailto:[EMAIL PROTECTED] Sent: Friday, 14 July 2000 11:14 To: [EMAIL PROTECTED] Subject: javac Task Using Jikes with Large Number of Files I'm trying

  1   2   3   4   5   6   7   8   9   10   >