DO NOT REPLY [Bug 17576] New: - org/apache/bcel/classfile/FieldOrMethod not found in classconstants

2003-03-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17576

org/apache/bcel/classfile/FieldOrMethod not found in classconstants

   Summary: org/apache/bcel/classfile/FieldOrMethod not found in
classconstants
   Product: Ant
   Version: 1.5.1
  Platform: PC
OS/Version: Windows NT/2K
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Core
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


I defined a simple versioning target of the form:

  

  


When I execute it I get the following error:
java.lang.NoClassDefFoundError: org/apache/bcel/classfile/FieldOrMethod
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:120)
at org.apache.tools.ant.filters.ClassConstants.read(ClassConstants.java:
144)
at org.apache.tools.ant.filters.BaseFilterReader.readLine(BaseFilterRead
er.java:208)
at org.apache.tools.ant.filters.PrefixLines.read(PrefixLines.java:137)
at org.apache.tools.ant.filters.BaseFilterReader.read(BaseFilterReader.j
ava:123)
at java.io.Reader.read(Reader.java:102)
at org.apache.tools.ant.util.FileUtils.readFully(FileUtils.java:793)
at org.apache.tools.ant.filters.util.ChainReaderHelper.readFully(ChainRe
aderHelper.java:238)
at org.apache.tools.ant.taskdefs.LoadProperties.execute(LoadProperties.j
ava:139)
at org.apache.tools.ant.Task.perform(Task.java:319)
at org.apache.tools.ant.Target.execute(Target.java:309)
at org.apache.tools.ant.Target.performTasks(Target.java:336)
at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
at org.apache.tools.ant.Project.executeTargets(Project.java:1250)
at org.apache.tools.ant.Main.runBuild(Main.java:610)
at org.apache.tools.ant.Main.start(Main.java:196)
at org.apache.tools.ant.Main.main(Main.java:235)

When I look at the source code, my 1.5.1 source drop says JAVA_CLASS_HELPER 
should be "org.apache.tools.ant.filters.util.JavaClassHelper", but I see from 
the comments at the top of the ClassConstants.java file that "This filter uses 
the BCEL external toolkit". So I'm wondering if somehow the 1.5.1 classes I 
downloaded were compiled from the source I'm looking at.


Nathaniel Spurling is out of the office.

2003-03-03 Thread Nathaniel Spurling
I will be out of the office starting  03.03.2003 and will not return until 
07.03.2003.

I will respond to your message when I return.


--

This e-mail may contain confidential and/or privileged information. If you are 
not the intended recipient (or have received this e-mail in error) please 
notify the sender immediately and destroy this e-mail. Any unauthorized 
copying, disclosure or distribution of the material in this e-mail is strictly 
forbidden.




DO NOT REPLY [Bug 10719] - Files processed under SQL task are hacked

2003-03-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10719

Files processed under SQL task are hacked





--- Additional Comments From [EMAIL PROTECTED]  2003-03-03 12:22 ---
NOTE: The last attachment is the only one needed for fixing this bug, since now
the missing functionality has been added directly to SQLExec.java.


Re: ClassLoader and Properties handling behaviour

2003-03-03 Thread Conor MacNeill
Jason van Zyl wrote:
Hi,
I
have heard that it is now possible to specify ClassLoaders and
Properties handlers. Is this true?
These are experimental at this stage. They have been added but not used much 
or extensively tested. I think more work remains in this areas.

In Maven we embed the use of Ant and I would like Ant to use the
ClassWorlds (classworlds.werken.com) mechanism we have in place and
remove the use the commons-sandbox Grant project.
We are not using Grant at the moment. I think you are probably referring to 
Maven, but just to be clear. As for ClassWorlds, how would you envisage this 
would be used in Ant? I'm not clear where it would fit.

Also, I'm a little concerned about violating the classloading hierarchy - it 
leads to Linkage errors in my experience. I have the same concern with the 
ClassLoader task.

If this is indeed true could someone point me at the the relevant code?
The ClassLoader task is here
http://cvs.apache.org/viewcvs.cgi/ant/src/main/org/apache/tools/ant/taskdefs/Classloader.java
The PropertyHelper clas is here but you'll need to follow the relationships 
to see how it is used
http://cvs.apache.org/viewcvs.cgi/ant/src/main/org/apache/tools/ant/PropertyHelper.java

Also, someone pointed James at the lifecycle document for taskdefs but
can't seem to find it, could someone point me at that also?
I don't know who James is in this case, but the document is here
http://ant.apache.org/manual/develop.html#writingowntask
Conor



Re: ClassLoader and Properties handling behaviour

2003-03-03 Thread Jason van Zyl
On Mon, 2003-03-03 at 07:35, Conor MacNeill wrote:
> Jason van Zyl wrote:
> > Hi,
> > 
> > I
> > have heard that it is now possible to specify ClassLoaders and
> > Properties handlers. Is this true?
> 
> These are experimental at this stage. They have been added but not used much 
> or extensively tested. I think more work remains in this areas.

No problem. I have found a way to override the AntClassLoader.

> > 
> > In Maven we embed the use of Ant and I would like Ant to use the
> > ClassWorlds (classworlds.werken.com) mechanism we have in place and
> > remove the use the commons-sandbox Grant project.
> 
> We are not using Grant at the moment. I think you are probably referring to 
> Maven, but just to be clear. As for ClassWorlds, how would you envisage this 
> would be used in Ant? I'm not clear where it would fit.

ClassWorlds is what is going to be used to fully control classloading in
Maven. It is also being used in the Plexus avalon-based container which
is what Maven will eventually sit upon.

> Also, I'm a little concerned about violating the classloading hierarchy - it 
> leads to Linkage errors in my experience. I have the same concern with the 
> ClassLoader task.

Well, I plan to by pass the classloading mechanism which is controlled
by ClassWorlds. ClassLoading in general is much easier to control using
ClassWorlds. I'm definitely aware of potential problems but I've got my
share of ClassLoader experience :-)

> > 
> > If this is indeed true could someone point me at the the relevant code?
> 
> The ClassLoader task is here
> http://cvs.apache.org/viewcvs.cgi/ant/src/main/org/apache/tools/ant/taskdefs/Classloader.java
> 
> The PropertyHelper clas is here but you'll need to follow the relationships 
> to see how it is used
> http://cvs.apache.org/viewcvs.cgi/ant/src/main/org/apache/tools/ant/PropertyHelper.java
> 
> > 
> > Also, someone pointed James at the lifecycle document for taskdefs but
> > can't seem to find it, could someone point me at that also?
> > 
> 
> I don't know who James is in this case, but the document is here
> http://ant.apache.org/manual/develop.html#writingowntask

Cool, much appreciated!

> Conor
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
-- 
jvz.

Jason van Zyl
[EMAIL PROTECTED]
http://tambora.zenplex.org

In short, man creates for himself a new religion of a rational
and technical order to justify his work and to be justified in it.
  
  -- Jacques Ellul, The Technological Society



DO NOT REPLY [Bug 17597] New: - Execute.getProcEnvironment causes Exception in combination with a MySQL database

2003-03-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17597

Execute.getProcEnvironment causes Exception in combination with a MySQL database

   Summary: Execute.getProcEnvironment causes Exception in
combination with a MySQL database
   Product: Ant
   Version: 1.5.1
  Platform: PC
OS/Version: Windows NT/2K
Status: UNCONFIRMED
  Severity: Normal
  Priority: Other
 Component: Other
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Hello,

i used your ANT1.5.1 org.apache.tools.ant.taskdefs.Execute.getProcEnvironment
method to get the System properties under W2K(Service Pack3) with SUN's 
JDK1.4.1_01.
When trying to access a MySQL database the complete application crashes.
I've solved this by NOT USING getProcEnvironment for this application !;-)
I can't point to the problem, even before loading the database driver with
reflection the application crashes.
Also when trying to access a remote database the application crashes.
When not trying to access a database, all seems to work fine.

Calling process:
ANT for calling application which calls getProcEnvironment to resolve path for
loading shared library. Database is MySQL and i accessed with
org.gjt.mm.mysql.Driver

See error in attachement.

Regards, Joerg

java.lang.OutOfMemoryError: unable to create new native thread
at java.lang.Thread.start(Native Method)
at...tools.ant.taskdefs.PumpStreamHandler.start(PumpStreamHandler.java:106)
at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:440)
atorg.apache.tools.ant.taskdefs.Execute.getProcEnvironment(Execute.java:180)
at wsi.ra.tool.SystemHelper.loadOSEnvironment(SystemHelper.java:126)


DO NOT REPLY [Bug 17597] - Execute.getProcEnvironment causes Exception in combination with a MySQL database

2003-03-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17597

Execute.getProcEnvironment causes Exception in combination with a MySQL database





--- Additional Comments From [EMAIL PROTECTED]  2003-03-03 15:13 ---
could you try to allocate more memory for ANT




to use 200 Mb of memory for instance


(this is just an example, 64 Mb might do)




==> under Windows SET ANT_OPTS="-Xmx200m -Xms200m"


==> under UNIXexport ANT_OPTS="-Xmx200m -Xms200m"


cvs commit: ant/xdocs antnews.xml bindownload.xml faq.xml index.xml srcdownload.xml

2003-03-03 Thread umagesh
umagesh 2003/03/03 07:24:14

  Modified:docs antnews.html bindownload.html faq.html index.html
srcdownload.html
   xdocsantnews.xml bindownload.xml faq.xml index.xml
srcdownload.xml
  Log:
  Announce Ant 1.5.2
  
  Revision  ChangesPath
  1.56  +20 -9 ant/docs/antnews.html
  
  Index: antnews.html
  ===
  RCS file: /home/cvs/ant/docs/antnews.html,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- antnews.html  24 Feb 2003 15:18:51 -  1.55
  +++ antnews.html  3 Mar 2003 15:24:12 -   1.56
  @@ -211,16 +211,13 @@
 
 
 
  -Ant Top Level Project
  +Ant 1.5.2
 
  -November 18, 2002
  -The Apache board created
  -   the Apache Ant top level project. Ant has now migrated from the 
Jakarta
  -   project into an Apache project of its own. This is primarily an
  -   organizational change and will not affect the technical aspects of
  -   the project. Ant retains a strong association with the Apache
  -   Jakarta project. One effect of this change is that the Ant webpage
  -   is now located at http://ant.apache.org";>http://ant.apache.org
  +March 3, 2003 - Ant 1.5.2 Available!
  +The final version of Ant 1.5.2 is now 
available for 
  + http://ant.apache.org/bindownload.cgi";>download. 
  + If you have any feedback on this release, feel free to join the 
  + discussion on the dev and user mailing lists.

 
 
  @@ -235,6 +232,19 @@

 
 
  +Ant Top Level Project
  +  
  +November 18, 2002
  +The Apache board created
  +   the Apache Ant top level project. Ant has now migrated from the 
Jakarta
  +   project into an Apache project of its own. This is primarily an
  +   organizational change and will not affect the technical aspects of
  +   the project. Ant retains a strong association with the Apache
  +   Jakarta project. One effect of this change is that the Ant webpage
  +   is now located at http://ant.apache.org";>http://ant.apache.org
  + 
  +  
  +  
   Ant 1.5.1
 
   October 3, 2002 - Ant 1.5.1 Available !
  @@ -382,6 +392,7 @@
Make Ant more easily extendable by allowing additional tasks to 
be "dropped" in.
Allow Ant to function as a component to simplify integration 
with GUIs and IDEs.
Make Ant more regular and logical.
  +
  
  
  It is expected that Ant 2.0 will break Ant 1.x based build files. The 
intention is to
  
  
  
  1.18  +13 -13ant/docs/bindownload.html
  
  Index: bindownload.html
  ===
  RCS file: /home/cvs/ant/docs/bindownload.html,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- bindownload.html  19 Feb 2003 08:45:13 -  1.17
  +++ bindownload.html  3 Mar 2003 15:24:12 -   1.18
  @@ -248,23 +248,23 @@
 
   Current Release of Ant
 
  -Currently, Apache Ant 1.5.1 is the best available 
version, see the
  +Currently, Apache Ant 1.5.2 is the best available 
version, see the
   release notes.
   
   .zip archive: 
  -jakarta-ant-1.5.1-bin.zip
 
  -[http://www.apache.org/dist/ant/binaries/jakarta-ant-1.5.1-bin.zip.asc";>PGP]
  -[http://www.apache.org/dist/ant/binaries/jakarta-ant-1.5.1-bin.zip.md5";>MD5]
  +apache-ant-1.5.2-bin.zip
 
  +[http://www.apache.org/dist/ant/binaries/apache-ant-1.5.2-bin.zip.asc";>PGP]
  +[http://www.apache.org/dist/ant/binaries/apache-ant-1.5.2-bin.zip.md5";>MD5]
   
   .tar.gz archive: 
  -jakarta-ant-1.5.1-bin.tar.gz
 
  -[http://www.apache.org/dist/ant/binaries/jakarta-ant-1.5.1-bin.tar.gz.asc";>PGP]
  -[http://www.apache.org/dist/ant/binaries/jakarta-ant-1.5.1-bin.tar.gz.md5";>MD5]
  +apache-ant-1.5.2-bin.tar.gz
 
  +[http://www.apache.org/dist/ant/binaries/apache-ant-1.5.2-bin.tar.gz.asc";>PGP]
  +[http://www.apache.org/dist/ant/binaries/apache-ant-1.5.2-bin.tar.gz.md5";>MD5]
   
   .tar.bz2 archive: 
  -jakarta-ant-1.5.1-bin.tar.bz2
 
  -[http://www.apache.org/dist/ant/binaries/jakarta-ant-1.5.1-bin.tar.bz2.asc";>PGP]
  -[http://www.apache.org/dist/ant/binaries/jakarta-ant-1.5.1-bin.tar.bz2.md5";>MD5]
  +apache-ant-1.5.2-bin.tar.bz2
 
  +[http://www.apache.org/dist/ant/binaries/apache-ant-1.5.2-bin.tar.bz2.asc";>PGP]
  +[http://www.apache.org/dist/ant/binaries/apache-ant-1.5.2-bin.tar.bz2.md5";>MD5]
   
 
 
  @@ -295,17 +295,17 @@
   usin

DO NOT REPLY [Bug 17597] - Execute.getProcEnvironment causes Exception in combination with a MySQL database

2003-03-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17597

Execute.getProcEnvironment causes Exception in combination with a MySQL database





--- Additional Comments From [EMAIL PROTECTED]  2003-03-03 15:27 ---
Doesn't work. I used:
 setenv ANT_OPTS "-Xmx200m -Xms200m"
under Cygwin with a tcsh shell. The application was already started with:
  
  


DO NOT REPLY [Bug 17597] - Execute.getProcEnvironment causes Exception in combination with a MySQL database

2003-03-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17597

Execute.getProcEnvironment causes Exception in combination with a MySQL database





--- Additional Comments From [EMAIL PROTECTED]  2003-03-03 15:33 ---
Then could you try starting without the new generational GC in JDK 1.4.1. A 
colleage observed that this new GC created *hundreds* of thread, or error seems 
to be that you cannot create any more thread. Switching to the old GC using 
just a few threads might solve your issue!?!?! --DD


[ANN] Ant 1.5.2 Released!

2003-03-03 Thread Magesh Umasankar
Hi,
[EMAIL PROTECTED] is pleased to announce the general availability
of Ant 1.5.2.  This is primarily a maintenance release.
You may download it by visiting:

http://ant.apache.org/bindownload.cgi

For a list of changes from the 1.5.1 release to this one,
please view the WHATSNEW file that ships with the
distribution.

Your feedback is of immense value.  Please let [EMAIL PROTECTED] 
know of any issues you find by either posting it
to the developer's list or by entering a BugZilla
report at http://nagoya.apache.org/bugzilla

Cheers,
Magesh

*
*  There are two types of people in this*
*  world, good and bad.  The good sleep *
*  better, but the bad seem to enjoy the*
*  waking hours much more. - Woody Allen*
*



RE: [ANN] Ant 1.5.2 Released!

2003-03-03 Thread Dominique Devienne
I get a 404 when trying to download the 1.5.2 ZIP from the Ant main page.

--DD

-Original Message-
From: Magesh Umasankar [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 03, 2003 9:37 AM
To: Ant Developers List; user@ant.apache.org
Cc: announcements@xml.apache.org; [EMAIL PROTECTED];
announcements@jakarta.apache.org
Subject: [ANN] Ant 1.5.2 Released!

Hi,
[EMAIL PROTECTED] is pleased to announce the general availability
of Ant 1.5.2.  This is primarily a maintenance release.
You may download it by visiting:

http://ant.apache.org/bindownload.cgi

For a list of changes from the 1.5.1 release to this one,
please view the WHATSNEW file that ships with the
distribution.

Your feedback is of immense value.  Please let [EMAIL PROTECTED] 
know of any issues you find by either posting it
to the developer's list or by entering a BugZilla
report at http://nagoya.apache.org/bugzilla

Cheers,
Magesh

*
*  There are two types of people in this*
*  world, good and bad.  The good sleep *
*  better, but the bad seem to enjoy the*
*  waking hours much more. - Woody Allen*
*


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: [ANN] Ant 1.5.2 Released!

2003-03-03 Thread Dominique Devienne
Changed the mirror to something else than InetCosmos, and it worked (the
former was the default selected though). --DD

-Original Message-
From: Dominique Devienne [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 03, 2003 9:42 AM
To: 'Ant Developers List'
Subject: RE: [ANN] Ant 1.5.2 Released!

I get a 404 when trying to download the 1.5.2 ZIP from the Ant main page.

--DD

-Original Message-
From: Magesh Umasankar [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 03, 2003 9:37 AM
To: Ant Developers List; user@ant.apache.org
Cc: announcements@xml.apache.org; [EMAIL PROTECTED];
announcements@jakarta.apache.org
Subject: [ANN] Ant 1.5.2 Released!

Hi,
[EMAIL PROTECTED] is pleased to announce the general availability
of Ant 1.5.2.  This is primarily a maintenance release.
You may download it by visiting:

http://ant.apache.org/bindownload.cgi

For a list of changes from the 1.5.1 release to this one,
please view the WHATSNEW file that ships with the
distribution.

Your feedback is of immense value.  Please let [EMAIL PROTECTED] 
know of any issues you find by either posting it
to the developer's list or by entering a BugZilla
report at http://nagoya.apache.org/bugzilla

Cheers,
Magesh

*
*  There are two types of people in this*
*  world, good and bad.  The good sleep *
*  better, but the bad seem to enjoy the*
*  waking hours much more. - Woody Allen*
*


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


DO NOT REPLY [Bug 17597] - Execute.getProcEnvironment causes Exception in combination with a MySQL database

2003-03-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17597

Execute.getProcEnvironment causes Exception in combination with a MySQL database





--- Additional Comments From [EMAIL PROTECTED]  2003-03-03 15:46 ---
Sounds reasonable, this will explain the rapid-memory-consumption-peak.
O.k., seems to be a JDK bug. I've tried:
-Xnoclassgc and -Xincgc
both doesn't work. Any other suggestions ? Otherwise you can close this bug and
send a bug report to SUN's JDK, because you can explain the problem in more
detail and your community is greater !;-)


RE: [ANN] Ant 1.5.2 Released!

2003-03-03 Thread Wannheden, Knut
Did you try to download it from a mirror?  The mirrors are probably not up
to date yet :-)  Follow the "master distribution directory" link
(http://www.apache.org/dist/ant/).

--
knut

> -Original Message-
> From: Dominique Devienne [mailto:[EMAIL PROTECTED]
> Sent: Montag, 3. März 2003 16:42
> To: 'Ant Developers List'
> Subject: RE: [ANN] Ant 1.5.2 Released!
> 
> 
> I get a 404 when trying to download the 1.5.2 ZIP from the 
> Ant main page.
> 
> --DD
> 
> -Original Message-
> From: Magesh Umasankar [mailto:[EMAIL PROTECTED] 
> Sent: Monday, March 03, 2003 9:37 AM
> To: Ant Developers List; user@ant.apache.org
> Cc: announcements@xml.apache.org; [EMAIL PROTECTED];
> announcements@jakarta.apache.org
> Subject: [ANN] Ant 1.5.2 Released!
> 
> Hi,
> [EMAIL PROTECTED] is pleased to announce the general availability
> of Ant 1.5.2.  This is primarily a maintenance release.
> You may download it by visiting:
> 
> http://ant.apache.org/bindownload.cgi
> 
> For a list of changes from the 1.5.1 release to this one,
> please view the WHATSNEW file that ships with the
> distribution.
> 
> Your feedback is of immense value.  Please let [EMAIL PROTECTED] 
> know of any issues you find by either posting it
> to the developer's list or by entering a BugZilla
> report at http://nagoya.apache.org/bugzilla
> 
> Cheers,
> Magesh
> 
> *
> *  There are two types of people in this*
> *  world, good and bad.  The good sleep *
> *  better, but the bad seem to enjoy the*
> *  waking hours much more. - Woody Allen*
> *
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


Re: [ANN] Ant 1.5.2 Released!

2003-03-03 Thread Magesh Umasankar
Give the mirrors time to catch up, or visit 
the main distribution site.

Cheers,
Magesh


*  Ever notice how wholeheartedly we give  *
*  ourselves to half-baked solutions?  *

- Original Message - 
From: "Dominique Devienne" <[EMAIL PROTECTED]>
To: "'Ant Developers List'" <[EMAIL PROTECTED]>
Sent: Monday, March 03, 2003 10:42 AM
Subject: RE: [ANN] Ant 1.5.2 Released!


> I get a 404 when trying to download the 1.5.2 ZIP from the Ant main page.
> 
> --DD
> 
> -Original Message-
> From: Magesh Umasankar [mailto:[EMAIL PROTECTED] 
> Sent: Monday, March 03, 2003 9:37 AM
> To: Ant Developers List; user@ant.apache.org
> Cc: announcements@xml.apache.org; [EMAIL PROTECTED];
> announcements@jakarta.apache.org
> Subject: [ANN] Ant 1.5.2 Released!
> 
> Hi,
> [EMAIL PROTECTED] is pleased to announce the general availability
> of Ant 1.5.2.  This is primarily a maintenance release.
> You may download it by visiting:
> 
> http://ant.apache.org/bindownload.cgi
> 
> For a list of changes from the 1.5.1 release to this one,
> please view the WHATSNEW file that ships with the
> distribution.
> 
> Your feedback is of immense value.  Please let [EMAIL PROTECTED] 
> know of any issues you find by either posting it
> to the developer's list or by entering a BugZilla
> report at http://nagoya.apache.org/bugzilla
> 
> Cheers,
> Magesh
> 
> *
> *  There are two types of people in this*
> *  world, good and bad.  The good sleep *
> *  better, but the bad seem to enjoy the*
> *  waking hours much more. - Woody Allen*
> *
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 



RE: [ANN] Ant 1.5.2 Released!

2003-03-03 Thread Steve Cohen
Congratulations.

One minor quibble - WHATSNEW does not mention any of the significant
revisions to the starteam optional tasks, which are in this release.



-Original Message-
From: Magesh Umasankar [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 03, 2003 9:44 AM
To: Ant Developers List
Subject: Re: [ANN] Ant 1.5.2 Released!


Give the mirrors time to catch up, or visit 
the main distribution site.

Cheers,
Magesh


*  Ever notice how wholeheartedly we give  *
*  ourselves to half-baked solutions?  *

- Original Message - 
From: "Dominique Devienne" <[EMAIL PROTECTED]>
To: "'Ant Developers List'" <[EMAIL PROTECTED]>
Sent: Monday, March 03, 2003 10:42 AM
Subject: RE: [ANN] Ant 1.5.2 Released!


> I get a 404 when trying to download the 1.5.2 ZIP from the Ant main 
> page.
> 
> --DD
> 
> -Original Message-
> From: Magesh Umasankar [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 03, 2003 9:37 AM
> To: Ant Developers List; user@ant.apache.org
> Cc: announcements@xml.apache.org; [EMAIL PROTECTED];
> announcements@jakarta.apache.org
> Subject: [ANN] Ant 1.5.2 Released!
> 
> Hi,
> [EMAIL PROTECTED] is pleased to announce the general availability
> of Ant 1.5.2.  This is primarily a maintenance release.
> You may download it by visiting:
> 
> http://ant.apache.org/bindownload.cgi
> 
> For a list of changes from the 1.5.1 release to this one, please view 
> the WHATSNEW file that ships with the distribution.
> 
> Your feedback is of immense value.  Please let [EMAIL PROTECTED]
> know of any issues you find by either posting it
> to the developer's list or by entering a BugZilla
> report at http://nagoya.apache.org/bugzilla
> 
> Cheers,
> Magesh
> 
> *
> *  There are two types of people in this*
> *  world, good and bad.  The good sleep *
> *  better, but the bad seem to enjoy the*
> *  waking hours much more. - Woody Allen*
> *
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: ClassLoader and Properties handling behaviour

2003-03-03 Thread Costin Manolache
Conor MacNeill wrote:

> Also, I'm a little concerned about violating the classloading hierarchy -
> it leads to Linkage errors in my experience. I have the same concern with
> the ClassLoader task.

The ClassLoader task is no longer using the classloading hierarchy - the
initial version did, and it resulted in the expected Linkage errors ( and 
related workarounds ). This was needed in [embed] to work around ant1.5 
limitations - but when I merged I removed all the hacks, they are not needed
in 1.6.

By default it'll just add more jars to the main ant loader - and rely on the
lazy creation of tasks.

The  task can be extended to deal with hierarchies and
direct/reverse delegation - but the most common use will be to extend the
main ant loader.



Costin



building optional tasks

2003-03-03 Thread Steve Cohen
I cannot be sure, but it seems that the procedure for building optional
tasks has migrated away from what it used to be.  I am trying to build
1.5.2 from the sources and unzipping the sources no longer creates a
lib/optional directory.  However, the lib/optional directory is still
needed even though I couldn't find anywhere within the documentation
that jars needed for optional tasks should be placed there in order to
be built into the optional.jar.

Finally, the Library Dependencies section of
http://ant.apache.org/manual/index.html still states that for the ftp
and telnet tasks, netcomponents.jar must be downloaded from
www.savarese.org/oro/downloads.  However, the code of the ant tasks has
been changed to use
commons-net-1.0.0.jar for these tasks, which is now obtainable from
http://jakarta.apache.org/commons.net/download.html.  While I haven't
tried the manual's way, I doubt it will work since the ant code now uses
the new commons-net package names.

---
Steve Cohen
Sr. Software Engineer
Sportvision Inc.
[EMAIL PROTECTED]
http://www.sportvision.com





Re: [ANN] Ant 1.5.2 Released!

2003-03-03 Thread Magesh Umasankar
Noted.  We (I) will ensure that the main
distribution directory is specified in 
future announcements.

Cheers,
Magesh
- Original Message - 
From: "Erik Abele" <[EMAIL PROTECTED]>
To: "Magesh Umasankar" <[EMAIL PROTECTED]>
Cc: "Ant Developers List" <[EMAIL PROTECTED]>
Sent: Monday, March 03, 2003 1:46 PM
Subject: Re: [ANN] Ant 1.5.2 Released!


> Hi guys,
> 
> while trying to download the new Ant release I realized that the mirrors 
> have not yet picked up the new package. Up to now it seems that it is 
> only available via apache.org/dist/ant/...
> 
> This is slightly annoying for ordinary users since they most likely will 
> get a 'Not Found' message when trying to download.
> 
> Not sure what the best possible way to handle this would be, but perhaps 
> it's necessary to wait one or two days before announcing a release so 
> that the mirrors get a chance to pick it up...
> 
> cheers,
> Erik
> 
> Magesh Umasankar wrote:
> > Hi,
> > [EMAIL PROTECTED] is pleased to announce the general availability
> > of Ant 1.5.2.  This is primarily a maintenance release.
> > You may download it by visiting:
> > 
> > http://ant.apache.org/bindownload.cgi
> > 
> > For a list of changes from the 1.5.1 release to this one,
> > please view the WHATSNEW file that ships with the
> > distribution.
> > 
> > Your feedback is of immense value.  Please let [EMAIL PROTECTED] 
> > know of any issues you find by either posting it
> > to the developer's list or by entering a BugZilla
> > report at http://nagoya.apache.org/bugzilla
> > 
> > Cheers,
> > Magesh
> > 
> > *
> > *  There are two types of people in this*
> > *  world, good and bad.  The good sleep *
> > *  better, but the bad seem to enjoy the*
> > *  waking hours much more. - Woody Allen*
> > *
> > 
> > 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > 
> 



Re: [ANN] Ant 1.5.2 Released!

2003-03-03 Thread Erik Abele
Hi guys,
while trying to download the new Ant release I realized that the mirrors 
have not yet picked up the new package. Up to now it seems that it is 
only available via apache.org/dist/ant/...

This is slightly annoying for ordinary users since they most likely will 
get a 'Not Found' message when trying to download.

Not sure what the best possible way to handle this would be, but perhaps 
it's necessary to wait one or two days before announcing a release so 
that the mirrors get a chance to pick it up...

cheers,
Erik
Magesh Umasankar wrote:
Hi,
[EMAIL PROTECTED] is pleased to announce the general availability
of Ant 1.5.2.  This is primarily a maintenance release.
You may download it by visiting:
http://ant.apache.org/bindownload.cgi
For a list of changes from the 1.5.1 release to this one,
please view the WHATSNEW file that ships with the
distribution.
Your feedback is of immense value.  Please let [EMAIL PROTECTED] 
know of any issues you find by either posting it
to the developer's list or by entering a BugZilla
report at http://nagoya.apache.org/bugzilla

Cheers,
Magesh
*
*  There are two types of people in this*
*  world, good and bad.  The good sleep *
*  better, but the bad seem to enjoy the*
*  waking hours much more. - Woody Allen*
*
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]