DO NOT REPLY [Bug 29415] - [net] Reminder/Request for using nio instead of Threads

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=29415.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29415


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||LATER




--- Additional Comments From [EMAIL PROTECTED]  2004-12-06 11:26 ---
This is an issue that has cropped up many times. I think we have agreed that
this is something for the future (Commons Net 2.0 material?).

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



Re: digester newbie question

2004-12-06 Thread simon
On Mon, 2004-12-06 at 07:30, Mihai C. wrote:
 Hi all, being new to digester, I have no clue how to get around my problem. 
 Here's the story:
 I'm trying to parse a config xml that looks like this:
 root
  a
  ...
   b
   .
   /b
   b
   .
   /b
  /a
  a
  ...
   b
   .
   /b
   b
   .
   /b
  /a
 /root
 
 I have two beans (ABean and BBean)
 and the factory :
 class Factory {
  processA(ABean ab){
   ...
  }
  processB(BBean bb){
   
  }
  digest(){
   Digester d = new Digester();
   d.push(this); //stack bottom
   d.addSetNext(  root/a/b,   processB , BBean); // when 
 root/a/b pattern mathes, execute processB on 'this' with BBean type param
   d.addSetNext(  root/a,   processA, ABean); // when root/a 
 pattern mathes, execute processA on 'this' with ABean type param
   d.addObjectCreate( root/a,   ABean.class);
   d.addObjectCreate( root/a/b, BBean.class);
 
   ... //var addCallMethod()
  }
 }
 
 I get this error:
 
 [DEBUG] Digester - -[SetNextRule]{root/a/b} Call 
 Factory.processB([EMAIL PROTECTED])
 [ERROR] Digester - -End event threw exception 
 java.lang.IllegalArgumentException: argument type 
 mismatchjava.lang.IllegalArgumentException: argument type mismatch
 



 Obviously, processB() was called with the wrong arg type(ABean instead of 
 BBean) and that because the BBean obj was just poped from the stack.

No, I think what is happening is that Digester is attempting to call a
method
   processB(BBean)
on an object of type ABean. The ABean class presumably doesn't have such
a method.

The structure of your input xml implies that BBeans are children of
ABeans. But you appear to be trying to map this structure to a different
representation where ABean and BBean objects are children of a Factory
object. If you *really* want to do this, then I expect a way can be
found, but I doubt this is really what you want to achieve...

Remember that Digester has an object stack. You push an instance of
Factory on the stack initially. Then when an a tag is encountered,
your rules tell digester to create and push an ABean object onto the
stack, and call ProcessA on the (top-1) object (the Factory) passing the
top object (the ABean). All is ok so far. But then the b tag *within*
the a tag is encountered, so your rules tell Digester to create a
BBean object, push it on the stack, then call ProcessB on the (top-1)
object on the stack - which is an ABean. Now I think this probably *is*
what you want - the b tag is within the a tag, indicating that BBean
objects are children of ABean objects. So surely a method on the ABean
should be invoked to handle its children... 

I hope this helps. If not, please provide a little more information on
why you don't want to map the input xml in the obvious manner..

Regards,

Simon



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



Re: digester newbie question

2004-12-06 Thread Matthijs Wensveen
simon wrote:
On Mon, 2004-12-06 at 07:30, Mihai C. wrote:
 

Hi all, being new to digester, I have no clue how to get around my problem. 
Here's the story:
I'm trying to parse a config xml that looks like this:
root
a
...
 b
 .
 /b
 b
 .
 /b
/a
a
...
 b
 .
 /b
 b
 .
 /b
/a
/root

I have two beans (ABean and BBean)
and the factory :
class Factory {
processA(ABean ab){
 ...
}
processB(BBean bb){
 
}
digest(){
 Digester d = new Digester();
 d.push(this); //stack bottom
 d.addSetNext(  root/a/b,   processB , BBean); // when 
root/a/b pattern mathes, execute processB on 'this' with BBean type param
 d.addSetNext(  root/a,   processA, ABean); // when root/a 
pattern mathes, execute processA on 'this' with ABean type param
 d.addObjectCreate( root/a,   ABean.class);
 d.addObjectCreate( root/a/b, BBean.class);

 ... //var addCallMethod()
}
}
I get this error:
[DEBUG] Digester - -[SetNextRule]{root/a/b} Call 
Factory.processB([EMAIL PROTECTED])
[ERROR] Digester - -End event threw exception 
java.lang.IllegalArgumentException: argument type 
mismatchjava.lang.IllegalArgumentException: argument type mismatch

   


 

Obviously, processB() was called with the wrong arg type(ABean instead of 
BBean) and that because the BBean obj was just poped from the stack.
   

No, I think what is happening is that Digester is attempting to call a
method
  processB(BBean)
on an object of type ABean. The ABean class presumably doesn't have such
a method.
The structure of your input xml implies that BBeans are children of
ABeans. But you appear to be trying to map this structure to a different
representation where ABean and BBean objects are children of a Factory
object. If you *really* want to do this, then I expect a way can be
found, but I doubt this is really what you want to achieve...
Remember that Digester has an object stack. You push an instance of
Factory on the stack initially. Then when an a tag is encountered,
your rules tell digester to create and push an ABean object onto the
stack, and call ProcessA on the (top-1) object (the Factory) passing the
top object (the ABean). All is ok so far. But then the b tag *within*
the a tag is encountered, so your rules tell Digester to create a
BBean object, push it on the stack, then call ProcessB on the (top-1)
object on the stack - which is an ABean. Now I think this probably *is*
what you want - the b tag is within the a tag, indicating that BBean
objects are children of ABean objects. So surely a method on the ABean
should be invoked to handle its children... 

I hope this helps. If not, please provide a little more information on
why you don't want to map the input xml in the obvious manner..
Regards,
Simon
 

I agree with Simon that you probably don't want to do what you want to do.
But if you really want to, you can call addSetRoot(..) to do exactly 
what you describe.

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


[jira] Created: (JELLY-170) Nested scripts should be compiled and cached

2004-12-06 Thread Arnaud Masson (JIRA)
Nested scripts should be compiled and cached


 Key: JELLY-170
 URL: http://nagoya.apache.org/jira/browse/JELLY-170
 Project: jelly
Type: Improvement
  Components: core / taglib.core  
Versions: 1.0
 Environment: tomcat 5.0, Jelly 1.0 RC1
Reporter: Arnaud Masson


In the current version of jelly import tag, imported scripts are always 
parsed and recompiled each time the containing script runs, even if this script 
has already been compiled.

It isn't optimized if the compiled version of the main script must be cached 
for multiple read, for instance a web page.

In a JSP context, all included pages are compiled when the main jsp is 
compiled, so there is no performance penalty. That would be nice to have the 
same thing in jelly.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://nagoya.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Created: (JELLY-171) Nested scripts should be compiled and cached

2004-12-06 Thread Arnaud Masson (JIRA)
Nested scripts should be compiled and cached


 Key: JELLY-171
 URL: http://nagoya.apache.org/jira/browse/JELLY-171
 Project: jelly
Type: Improvement
  Components: core / taglib.core  
Versions: 1.0
 Environment: tomcat 5.0, Jelly 1.0 RC1
Reporter: Arnaud Masson


In the current version of jelly import tag, imported scripts are always 
parsed and recompiled each time the containing script runs, even if this script 
has already been compiled.

It isn't optimized if the compiled version of the main script must be cached 
for multiple read, for instance a web page.

In a JSP context, all included pages are compiled when the main jsp is 
compiled, so there is no performance penalty. That would be nice to have the 
same thing in jelly.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://nagoya.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



Some Maven help required

2004-12-06 Thread Rory Winston
OK, I am a Maven n00b, and I have no idea what the following output
actually *means* ;-):

C:\sandbox\java\jakarta-commons\netmaven site
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0.1


BUILD FAILED
File.. C:\Documents and 
Settings\rwinston\.maven\cache\maven-xdoc-plugin-1.8\plugin.jelly
Element... attainGoal
Line.. 687
Column 48
No goal [maven-statcvs-plugin:register]
Total time: 10 seconds
Finished at: Mon Dec 06 17:23:29 GMT 2004

I can get rid of this error by removing the statcvs line from the reports 
section in project.xml:

reportmaven-statcvs-plugin/report

But alas, I dont feel that this is a fix, in the proper sense 
of the word. 

Has anyone come across this before - any ideas what this means?

Cheers,
Rory


_
Sign up for eircom broadband now and get a free two month trial.*
Phone 1850 73 00 73 or visit http://home.eircom.net/broadbandoffer



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



Re: [beanutils] PropertyUtils DynaBeans

2004-12-06 Thread Kris Nuttycombe
The main issue is that my code needs to perform bean introspection on an 
Object without knowing whether that object is a regular bean or a 
DynaBean. Sure, I could add a clause like you suggest everywhere I want 
to do this, but it seems like this is really something that should be 
handled in PropertyUtils so that introspection information can be 
cached. The system I'm working on processes tens of thousands of objects 
at a pass, so creating a new WrapDynaBean for each object when a lookup 
on the classlass would suffice seems excessive.

Kris

Niall Pemberton wrote:
Maybe you could spell out the issues with PropertyUtils and DynaBeans and
the methods involved and what you're trying to do because its not clear what
your trying to resolve.
I'm don't see much value in the getDynaProperties() method being in
PropertyUtils - all you need to do is make eveything a DynaBean then you can
get the DynaProperties and do whatever you want using the existing
DynaBean/DynaClass methods -  no need for PropertyUtils at all.
DynaBean dynaBean = (bean instanceof DynaBean)
   ? (DynaBean)bean : new WrapDynaBean(bean);
For caching to work people are going to have to change how they create
DynaBeans and I believe its better left up to the environment they're being
used in to implement a caching mechanism - Struts does this for its
DynaActionForm implementation.
Niall
- Original Message - 
From: Kris Nuttycombe [EMAIL PROTECTED]
To: Commons Developers Jakarta [EMAIL PROTECTED]
Sent: Saturday, December 04, 2004 12:55 AM
Subject: [beanutils] PropertyUtils  DynaBeans

 

Hi, all,
As it currently stands, PropertyUtils doesn't support DynaBeans for a
number of its methods. It doesn't make much sense to return
PropertyDescriptors for DynaBeans, but it's no great pain to use
WrapDynaClass on an ordinary class and thereby be able to introspect
either regular beans or DynaBeans using the same interface. To support
this, I'd like to add a method with the signature:
DynaProperty[] getDynaProperties(Object bean)
to PropertyUtilsBean, with a corresponding static method in PropertyUtils.
Now, one of the other advantages of using PropertyUtilsBean is that it
caches the introspected data. Conceivably, this would also be a useful
feature for the getDynaProperties method. However, here we have a
problem: since DynaClass doesn't have any way to enforce that its
implementations implement HashCode, there's no way to use the same map
caching strategy as is used for the PropertyDescriptors. This
illustrates a larger issue, which is that DynaClass objects aren't
singletons like Class objects are.
To resolve this, I propose adding an AbstractDynaClass base class that
implements hashCode() and equals() based upon the public methods
available in DynaClass. This way, even if DynaClasses aren't singletons,
they can be used for hash keys. It might be also useful to implement a
registry for DynaClasses in this abstract class to provide
singleton-like functionality. Existing DynaClass implementations would
be modified to extend AbstractDynaClass.
Any thoughts?
Kris
   


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

--
=
Kris Nuttycombe
Associate Scientist
Geospatial Data Services Group
CIRES, National Geophysical Data Center/NOAA
(303) 497-6337
[EMAIL PROTECTED]
=

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


Re: Some Maven help required

2004-12-06 Thread Corey Scott
Rory,

Has the plugin installed properly?
You could try to clear your cache directory MAVEN_HOME/cache and then
run this command:
maven plugin:download -DartifactId=maven-statcvs-plugin
-DgroupId=statcvs -Dversion=2.5

This should install it for you.

Cheers,
Corey

On Mon, 6 Dec 2004 17:30:14 +, Rory Winston [EMAIL PROTECTED] wrote:
 OK, I am a Maven n00b, and I have no idea what the following output
 actually *means* ;-):
 
 C:\sandbox\java\jakarta-commons\netmaven site
 __  __
 |  \/  |__ _Apache__ ___
 | |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
 |_|  |_\__,_|\_/\___|_||_|  v. 1.0.1
 
 BUILD FAILED
 File.. C:\Documents and 
 Settings\rwinston\.maven\cache\maven-xdoc-plugin-1.8\plugin.jelly
 Element... attainGoal
 Line.. 687
 Column 48
 No goal [maven-statcvs-plugin:register]
 Total time: 10 seconds
 Finished at: Mon Dec 06 17:23:29 GMT 2004
 
 I can get rid of this error by removing the statcvs line from the reports 
 section in project.xml:
 
 reportmaven-statcvs-plugin/report
 
 But alas, I dont feel that this is a fix, in the proper sense
 of the word.
 
 Has anyone come across this before - any ideas what this means?
 
 Cheers,
 Rory
 
 _
 Sign up for eircom broadband now and get a free two month trial.*
 Phone 1850 73 00 73 or visit http://home.eircom.net/broadbandoffer
 
 -
 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: Some Maven help required

2004-12-06 Thread Rory Winston
Corey,

Fantastic. That worked a treat. Thanks a lot for your help!

Note to self: must learn how to use Maven proeprly one of these days :-)

Cheers,
Rory

Corey Scott [EMAIL PROTECTED] wrote:

 
 Rory,
 
 Has the plugin installed properly?
 You could try to clear your cache directory MAVEN_HOME/cache and then
 run this command:
 maven plugin:download -DartifactId=maven-statcvs-plugin
 -DgroupId=statcvs -Dversion=2.5
 
 This should install it for you.
 
 Cheers,
 Corey
 
 On Mon, 6 Dec 2004 17:30:14 +, Rory Winston [EMAIL PROTECTED] wrote:
  OK, I am a Maven n00b, and I have no idea what the following output
  actually *means* ;-):
  
  C:\sandbox\java\jakarta-commons\netmaven site
  __  __
  |  \/  |__ _Apache__ ___
  | |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
  |_|  |_\__,_|\_/\___|_||_|  v. 1.0.1
  
  BUILD FAILED
  File.. C:\Documents and 
  Settings\rwinston\.maven\cache\maven-xdoc-plugin-1.8\plugin.jelly
  Element... attainGoal
  Line.. 687
  Column 48
  No goal [maven-statcvs-plugin:register]
  Total time: 10 seconds
  Finished at: Mon Dec 06 17:23:29 GMT 2004
  
  I can get rid of this error by removing the statcvs line from the reports 
  section in project.xml:
  
  reportmaven-statcvs-plugin/report
  
  But alas, I dont feel that this is a fix, in the proper sense
  of the word.
  
  Has anyone come across this before - any ideas what this means?
  
  Cheers,
  Rory
  
  _
  Sign up for eircom broadband now and get a free two month trial.*
  Phone 1850 73 00 73 or visit http://home.eircom.net/broadbandoffer
  
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  
 
 



_
Sign up for eircom broadband now and get a free two month trial.*
Phone 1850 73 00 73 or visit http://home.eircom.net/broadbandoffer



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



DO NOT REPLY [Bug 32481] - [beanutils] Can't have null fields with custom converters

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32481.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32481





--- Additional Comments From [EMAIL PROTECTED]  2004-12-06 20:10 ---
The exception I'm seeing is:

Caused by: java.lang.reflect.InvocationTargetException
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
  at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
  at java.lang.reflect.Method.invoke(Method.java:324)
  at org.apache.commons.beanutils.PropertyUtils.setSimpleProperty
(PropertyUtils.java:1789)
  at org.apache.commons.beanutils.BeanUtils.copyProperty(BeanUtils.java:366)
  at org.apache.commons.beanutils.BeanUtils.copyProperties(BeanUtils.java:239)
  at . . .

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



Re: [beanutils] PropertyUtils DynaBeans

2004-12-06 Thread Niall Pemberton
OK the performance issue is a good point, but I don't agree with your
reasoning to include it in PropertyUtils.

WrapDynaClass instances are singletons as it already caches instances of
itself - (it's constructor is private and new WrapDynaClass intances are
created with the static createDynaClass() method which uses a cache).

So I guess your proposed getDynaProperties(Object bean) method would look
something like

public DynaProperty[] getDynaProperties(Object bean)  {
return (bean instanceof DynaBean)
? ((DynaBean)bean).getDynaClass().getDynaProperties()
: WrapDynaBean.createDynaClass(bean).getDynaProperties();
}

...with no need to cache anything in PropertyUtils. Maybe this is a nice
convenience method, but I'm pretty neutral about whether it should be added
to the API or not.


Niall


- Original Message - 
From: Kris Nuttycombe [EMAIL PROTECTED]
To: Jakarta Commons Developers List [EMAIL PROTECTED]
Sent: Monday, December 06, 2004 5:31 PM
Subject: Re: [beanutils] PropertyUtils  DynaBeans


 The main issue is that my code needs to perform bean introspection on an
 Object without knowing whether that object is a regular bean or a
 DynaBean. Sure, I could add a clause like you suggest everywhere I want
 to do this, but it seems like this is really something that should be
 handled in PropertyUtils so that introspection information can be
 cached. The system I'm working on processes tens of thousands of objects
 at a pass, so creating a new WrapDynaBean for each object when a lookup
 on the classlass would suffice seems excessive.

 Kris



 Niall Pemberton wrote:

 Maybe you could spell out the issues with PropertyUtils and DynaBeans and
 the methods involved and what you're trying to do because its not clear
what
 your trying to resolve.
 
 I'm don't see much value in the getDynaProperties() method being in
 PropertyUtils - all you need to do is make eveything a DynaBean then you
can
 get the DynaProperties and do whatever you want using the existing
 DynaBean/DynaClass methods -  no need for PropertyUtils at all.
 
 DynaBean dynaBean = (bean instanceof DynaBean)
 ? (DynaBean)bean : new WrapDynaBean(bean);
 
 For caching to work people are going to have to change how they create
 DynaBeans and I believe its better left up to the environment they're
being
 used in to implement a caching mechanism - Struts does this for its
 DynaActionForm implementation.
 
 Niall
 
 - Original Message - 
 From: Kris Nuttycombe [EMAIL PROTECTED]
 To: Commons Developers Jakarta [EMAIL PROTECTED]
 Sent: Saturday, December 04, 2004 12:55 AM
 Subject: [beanutils] PropertyUtils  DynaBeans
 
 
 
 
 Hi, all,
 
 As it currently stands, PropertyUtils doesn't support DynaBeans for a
 number of its methods. It doesn't make much sense to return
 PropertyDescriptors for DynaBeans, but it's no great pain to use
 WrapDynaClass on an ordinary class and thereby be able to introspect
 either regular beans or DynaBeans using the same interface. To support
 this, I'd like to add a method with the signature:
 
 DynaProperty[] getDynaProperties(Object bean)
 
 to PropertyUtilsBean, with a corresponding static method in
PropertyUtils.
 
 Now, one of the other advantages of using PropertyUtilsBean is that it
 caches the introspected data. Conceivably, this would also be a useful
 feature for the getDynaProperties method. However, here we have a
 problem: since DynaClass doesn't have any way to enforce that its
 implementations implement HashCode, there's no way to use the same map
 caching strategy as is used for the PropertyDescriptors. This
 illustrates a larger issue, which is that DynaClass objects aren't
 singletons like Class objects are.
 
 To resolve this, I propose adding an AbstractDynaClass base class that
 implements hashCode() and equals() based upon the public methods
 available in DynaClass. This way, even if DynaClasses aren't singletons,
 they can be used for hash keys. It might be also useful to implement a
 registry for DynaClasses in this abstract class to provide
 singleton-like functionality. Existing DynaClass implementations would
 be modified to extend AbstractDynaClass.
 
 Any thoughts?
 
 Kris



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



Re: [beanutils] PropertyUtils DynaBeans

2004-12-06 Thread Kris Nuttycombe
Ah, I hadn't realized that WrapDynaClass cached automatically. That 
basically solves my problem with the 
PropertyUtils.get*PropertyDescriptors() methods not supporting DynaBeans.

I still think it wouldn't be a bad idea for DynaClasses to implement 
hashCode() and equals() in a standard fasion.

Kris
As an aside, you probably mean this, right?
public DynaProperty[] getDynaProperties(Object bean)  {
   return (bean instanceof DynaBean)
   ? ((DynaBean)bean).getDynaClass().getDynaProperties()
   : WrapDynaClass.createDynaClass(bean.getClass()).getDynaProperties();
}

Niall Pemberton wrote:
OK the performance issue is a good point, but I don't agree with your
reasoning to include it in PropertyUtils.
WrapDynaClass instances are singletons as it already caches instances of
itself - (it's constructor is private and new WrapDynaClass intances are
created with the static createDynaClass() method which uses a cache).
So I guess your proposed getDynaProperties(Object bean) method would look
something like
public DynaProperty[] getDynaProperties(Object bean)  {
   return (bean instanceof DynaBean)
   ? ((DynaBean)bean).getDynaClass().getDynaProperties()
   : WrapDynaBean.createDynaClass(bean).getDynaProperties();
}
...with no need to cache anything in PropertyUtils. Maybe this is a nice
convenience method, but I'm pretty neutral about whether it should be added
to the API or not.
Niall
- Original Message - 
From: Kris Nuttycombe [EMAIL PROTECTED]
To: Jakarta Commons Developers List [EMAIL PROTECTED]
Sent: Monday, December 06, 2004 5:31 PM
Subject: Re: [beanutils] PropertyUtils  DynaBeans

 

The main issue is that my code needs to perform bean introspection on an
Object without knowing whether that object is a regular bean or a
DynaBean. Sure, I could add a clause like you suggest everywhere I want
to do this, but it seems like this is really something that should be
handled in PropertyUtils so that introspection information can be
cached. The system I'm working on processes tens of thousands of objects
at a pass, so creating a new WrapDynaBean for each object when a lookup
on the classlass would suffice seems excessive.
Kris

Niall Pemberton wrote:
   

Maybe you could spell out the issues with PropertyUtils and DynaBeans and
the methods involved and what you're trying to do because its not clear
 

what
 

your trying to resolve.
I'm don't see much value in the getDynaProperties() method being in
PropertyUtils - all you need to do is make eveything a DynaBean then you
 

can
 

get the DynaProperties and do whatever you want using the existing
DynaBean/DynaClass methods -  no need for PropertyUtils at all.
DynaBean dynaBean = (bean instanceof DynaBean)
  ? (DynaBean)bean : new WrapDynaBean(bean);
For caching to work people are going to have to change how they create
DynaBeans and I believe its better left up to the environment they're
 

being
 

used in to implement a caching mechanism - Struts does this for its
DynaActionForm implementation.
Niall
- Original Message - 
From: Kris Nuttycombe [EMAIL PROTECTED]
To: Commons Developers Jakarta [EMAIL PROTECTED]
Sent: Saturday, December 04, 2004 12:55 AM
Subject: [beanutils] PropertyUtils  DynaBeans


 

Hi, all,
As it currently stands, PropertyUtils doesn't support DynaBeans for a
number of its methods. It doesn't make much sense to return
PropertyDescriptors for DynaBeans, but it's no great pain to use
WrapDynaClass on an ordinary class and thereby be able to introspect
either regular beans or DynaBeans using the same interface. To support
this, I'd like to add a method with the signature:
DynaProperty[] getDynaProperties(Object bean)
to PropertyUtilsBean, with a corresponding static method in
   

PropertyUtils.
 

Now, one of the other advantages of using PropertyUtilsBean is that it
caches the introspected data. Conceivably, this would also be a useful
feature for the getDynaProperties method. However, here we have a
problem: since DynaClass doesn't have any way to enforce that its
implementations implement HashCode, there's no way to use the same map
caching strategy as is used for the PropertyDescriptors. This
illustrates a larger issue, which is that DynaClass objects aren't
singletons like Class objects are.
To resolve this, I propose adding an AbstractDynaClass base class that
implements hashCode() and equals() based upon the public methods
available in DynaClass. This way, even if DynaClasses aren't singletons,
they can be used for hash keys. It might be also useful to implement a
registry for DynaClasses in this abstract class to provide
singleton-like functionality. Existing DynaClass implementations would
be modified to extend AbstractDynaClass.
Any thoughts?
Kris
   


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

--

[feedparser] nightly build

2004-12-06 Thread Matthias Wessendorf
Hi all,

is there a plan to [feedparser] (from sandbox) to nightly build?


Best regards
Mit freundlichen Grüßen
--
Matthias Weßendorf
Aechterhoek 18
DE-48282 Emsdetten
Germany


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



Re: [beanutils] PropertyUtils DynaBeans

2004-12-06 Thread Niall Pemberton
My mistake - you're right on the getDynaProperties() implementation.

Maybe its not a bad idea, but then again there are easier methods - I uses
caches which use the name of the DyanClass. Another issue is it would work
for your regular DynaClass, but those that also implement the
MutableDynaClass (e.g. LazyDynaClass) would have problems since dyna
properties can be added/removed which would change the hash code.

Also since DynaClass is just an interface we could change the
implementations provided in BeanUtils but theres no way of guaranteeing that
custom implementations outside of BeanUtils would implement it in this
standard fashion.

Perhaps the best way would be to provide a generateHashCode(DynaClass)
method and compare DynaClasses method (and getDyanProperties() method)  in
one of the utils beans to make it easier for people to implement these types
of behaviours - maybe a new DynaUtils would be a good idea for this?

If you think its worth it then submit a bugzilla ticket, preferably with
code :-)

Niall

P.S. toString() utility methods for DynaClass and DynaBean might make good
additons as well.

- Original Message - 
From: Kris Nuttycombe [EMAIL PROTECTED]
To: Jakarta Commons Developers List [EMAIL PROTECTED]
Sent: Monday, December 06, 2004 8:40 PM
Subject: Re: [beanutils] PropertyUtils  DynaBeans


 Ah, I hadn't realized that WrapDynaClass cached automatically. That
 basically solves my problem with the
 PropertyUtils.get*PropertyDescriptors() methods not supporting DynaBeans.

 I still think it wouldn't be a bad idea for DynaClasses to implement
 hashCode() and equals() in a standard fasion.

 Kris

 As an aside, you probably mean this, right?

 public DynaProperty[] getDynaProperties(Object bean)  {
 return (bean instanceof DynaBean)
 ? ((DynaBean)bean).getDynaClass().getDynaProperties()
 :
WrapDynaClass.createDynaClass(bean.getClass()).getDynaProperties();
 }



 Niall Pemberton wrote:

 OK the performance issue is a good point, but I don't agree with your
 reasoning to include it in PropertyUtils.
 
 WrapDynaClass instances are singletons as it already caches instances of
 itself - (it's constructor is private and new WrapDynaClass intances are
 created with the static createDynaClass() method which uses a cache).
 
 So I guess your proposed getDynaProperties(Object bean) method would look
 something like
 
 public DynaProperty[] getDynaProperties(Object bean)  {
 return (bean instanceof DynaBean)
 ? ((DynaBean)bean).getDynaClass().getDynaProperties()
 : WrapDynaBean.createDynaClass(bean).getDynaProperties();
 }
 
 ...with no need to cache anything in PropertyUtils. Maybe this is a nice
 convenience method, but I'm pretty neutral about whether it should be
added
 to the API or not.
 
 
 Niall
 
 
 - Original Message - 
 From: Kris Nuttycombe [EMAIL PROTECTED]
 To: Jakarta Commons Developers List [EMAIL PROTECTED]
 Sent: Monday, December 06, 2004 5:31 PM
 Subject: Re: [beanutils] PropertyUtils  DynaBeans
 
 
 
 
 The main issue is that my code needs to perform bean introspection on an
 Object without knowing whether that object is a regular bean or a
 DynaBean. Sure, I could add a clause like you suggest everywhere I want
 to do this, but it seems like this is really something that should be
 handled in PropertyUtils so that introspection information can be
 cached. The system I'm working on processes tens of thousands of objects
 at a pass, so creating a new WrapDynaBean for each object when a lookup
 on the classlass would suffice seems excessive.
 
 Kris
 
 
 
 Niall Pemberton wrote:
 
 
 
 Maybe you could spell out the issues with PropertyUtils and DynaBeans
and
 the methods involved and what you're trying to do because its not clear
 
 
 what
 
 
 your trying to resolve.
 
 I'm don't see much value in the getDynaProperties() method being in
 PropertyUtils - all you need to do is make eveything a DynaBean then
you
 
 
 can
 
 
 get the DynaProperties and do whatever you want using the existing
 DynaBean/DynaClass methods -  no need for PropertyUtils at all.
 
 DynaBean dynaBean = (bean instanceof DynaBean)
? (DynaBean)bean : new WrapDynaBean(bean);
 
 For caching to work people are going to have to change how they create
 DynaBeans and I believe its better left up to the environment they're
 
 
 being
 
 
 used in to implement a caching mechanism - Struts does this for its
 DynaActionForm implementation.
 
 Niall
 
 - Original Message - 
 From: Kris Nuttycombe [EMAIL PROTECTED]
 To: Commons Developers Jakarta [EMAIL PROTECTED]
 Sent: Saturday, December 04, 2004 12:55 AM
 Subject: [beanutils] PropertyUtils  DynaBeans
 
 
 
 
 
 
 Hi, all,
 
 As it currently stands, PropertyUtils doesn't support DynaBeans for a
 number of its methods. It doesn't make much sense to return
 PropertyDescriptors for DynaBeans, but it's no great pain to use
 WrapDynaClass on an ordinary class and thereby be able to 

Re: digester newbie question

2004-12-06 Thread simon
On Mon, 2004-12-06 at 23:36, simon wrote:
Digester d = new Digester();
d.push(this); //stack bottom
d.addSetNext(  root/a/b,   processB , BBean); // when 
  root/a/b pattern mathes, execute processB on 'this' with BBean type param
d.addSetNext(  root/a,   processA, ABean); // when root/a 
  pattern mathes, execute processA on 'this' with ABean type param
d.addObjectCreate( root/a,   ABean.class);
d.addObjectCreate( root/a/b, BBean.class);
  
  I get this error:
  
  [DEBUG] Digester - -[SetNextRule]{root/a/b} Call 
  Factory.processB([EMAIL PROTECTED])
  [ERROR] Digester - -End event threw exception 
  java.lang.IllegalArgumentException: argument type 
  mismatchjava.lang.IllegalArgumentException: argument type mismatch
  
 
 
 
  Obviously, processB() was called with the wrong arg type(ABean instead of 
  BBean) and that because the BBean obj was just poped from the stack.
 
 No, I think what is happening is that Digester is attempting to call a
 method
processB(BBean)
 on an object of type ABean. The ABean class presumably doesn't have such
 a method.

On re-reading the exception trace, I see I didn't look carefully enough
the first time.

I still stand by my original comments, but the reason you are getting
this message:
 [DEBUG] Digester - -[SetNextRule]{root/a/b} Call 
 Factory.processB([EMAIL PROTECTED])
is because you called d.addSetNext(root/a/b, ...) before you called
d.addObjectCreate(root/a/b, ...). This means that when the b element
is found, an attempt is made to call processB (passing the top object on
the stack) before the BBean object has been created and pushed on the
stack.

If you ensure the rules creating the ABean and BBean objects are added
before the rules that call processA/processB, then you will get a
*different* problem (being the one I described in my earlier email) but
I think this will at least be a step forward...

You may find it useful to download the source distribution of
digester-1.6 and look in the src/examples directory to see some simple
examples of how to use the commons digester.

And in future, please direct this sort of question to the user list
rather than the developer list. Almost all jakarta developers are also
watching the user list, so you lose nothing by asking on the correct
list. In addition there are many experienced coders on the user list who
could help, but are not subscribed to the dev list.

Cheers,

Simon



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



[GUMP@brutus]: Project commons-codec (in module jakarta-commons) success

2004-12-06 Thread Tim OBrien
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-codec *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-codec/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-codec-06122004.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-codec/gump_work/build_jakarta-commons_commons-codec.html
Work Name: build_jakarta-commons_commons-codec (Type: Build)
Work ended in a state of : Success
Elapsed: 12 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dcomponent.version=06122004 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/codec]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/codec/target/classes:/usr/local/gump/public/workspace/jakarta-commons/codec/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/target/test-reports

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/target/conf

compile:
[javac] Compiling 24 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/target/classes
 [copy] Copying 6 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/target/classes

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.codec...
  [javadoc] Loading source files for package org.apache.commons.codec.binary...
  [javadoc] Loading source files for package org.apache.commons.codec.digest...
  [javadoc] Loading source files for package 
org.apache.commons.codec.language...
  [javadoc] Loading source files for package org.apache.commons.codec.net...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/src/java/org/apache/commons/codec/binary/BinaryCodec.java:35:
 warning - @todo is an unknown tag.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/src/java/org/apache/commons/codec/binary/BinaryCodec.java:35:
 warning - @todo is an unknown tag.
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/dist/docs/api/stylesheet.css...
  [javadoc] 2 warnings

dist:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/dist
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/dist

init:
 [echo]  commons-codec 06122004 

prepare:

static:

compile:

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/target/classes/META-INF
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/codec/dist/commons-codec-06122004.jar

BUILD SUCCESSFUL
Total time: 11 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-codec/rss.xml
- Atom: 

[GUMP@brutus]: Project commons-net (in module jakarta-commons) failed

2004-12-06 Thread Stefan Bodewig
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-net has an issue affecting its community integration.
This issue affects 3 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-net :  Commons Net
- james-server :  James Server
- smartfrog-components :  Smartfrog: Application Deployment from HP 
Laboratories


Full details are available at:
http://brutus.apache.org/gump/public/jakarta-commons/commons-net/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-net-06122004.jar] identifier set to project name
 -INFO- Made directory 
[/usr/local/gump/public/workspace/jakarta-commons/net/target/classes]
 -INFO- Made directory 
[/usr/local/gump/public/workspace/jakarta-commons/net/target/test-classes]
 -INFO- Failed with reason build failed
 -DEBUG- Extracted fallback artifacts from Gump Repository



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-net/gump_work/build_jakarta-commons_commons-net.html
Work Name: build_jakarta-commons_commons-net (Type: Build)
Work ended in a state of : Failed
Elapsed: 22 secs
Command Line: java -Djava.awt.headless=true -Dbuild.clonevm=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-net-06122004 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/net]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/net/target/classes:/usr/local/gump/public/workspace/jakarta-commons/net/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-oro/jakarta-oro-06122004.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
[javac] ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/net/src/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java:57:
 warning: org.apache.commons.net.ftp.FTPFileList in org.apache.commons.net.ftp 
has been deprecated
[javac] FTPFileList ffl = FTPFileList.create(listStream, this, 
encoding);
[javac]   ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/net/src/java/org/apache/commons/net/ftp/FTPFileList.java:199:
 warning: org.apache.commons.net.ftp.FTPFileIterator in 
org.apache.commons.net.ftp has been deprecated
[javac] return new FTPFileIterator(this);
[javac]^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/net/src/java/org/apache/commons/net/ftp/FTPFileList.java:211:
 warning: org.apache.commons.net.ftp.FTPFileIterator in 
org.apache.commons.net.ftp has been deprecated
[javac] return new FTPFileIterator(this, parser);
[javac]^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/net/src/java/org/apache/commons/net/ftp/FTPFileIterator.java:75:
 warning: org.apache.commons.net.ftp.FTPFileList in org.apache.commons.net.ftp 
has been deprecated
[javac] FTPFileIterator (FTPFileList rawlist)
[javac]  ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/net/src/java/org/apache/commons/net/ftp/FTPFileIterator.java:88:
 warning: org.apache.commons.net.ftp.FTPFileList in org.apache.commons.net.ftp 
has been deprecated
[javac] FTPFileIterator (FTPFileList rawlist,
[javac]  ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java:104:
 warning: readServerList(java.io.InputStream) in 
org.apache.commons.net.ftp.FTPListParseEngine has been deprecated
[javac] engine.readServerList(listStream);
[javac]   ^
[javac] 12 warnings
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/net/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/net/target/classes/META-INF


[GUMP@brutus]: Project commons-lang (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-lang *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:
http://brutus.apache.org/gump/public/jakarta-commons/commons-lang/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-lang-06122004.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-lang/gump_work/build_jakarta-commons_commons-lang.html
Work Name: build_jakarta-commons_commons-lang (Type: Build)
Work ended in a state of : Success
Elapsed: 9 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dcomponent.version=06122004 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/lang]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar
-
  [javadoc] To avoid this note, change the doc comment to make this a proper 
first sentence, then
  [javadoc] use -breakiterator from that point forward, which will output this 
new sentence.
  [javadoc] pInterpolates a String to replace variables of the form 
code${...}/code
  [javadoc]  where the replace strings may also contain variables to 
interpolate.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] pInterpolates a String to replace variables of the form 
code${...}
  [javadoc] Building index for all classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/lang/src/java/org/apache/commons/lang/text/Interpolation.java:76:
 warning - The first sentence is interpreted to be:
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons/lang/dist/docs/api/org/apache/commons/lang/text/Interpolation.html...
  [javadoc] pInterpolates a String to replace variables of the form 
code${...}/code.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] pInterpolates a String to replace variables of the form 
code${...}
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/lang/src/java/org/apache/commons/lang/text/Interpolation.java:153:
 warning - The first sentence is interpreted to be:
  [javadoc] pInterpolates a String to replace variables of the form 
code${...}/code
  [javadoc]  where the replace strings may also contain variables to 
interpolate.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] pInterpolates a String to replace variables of the form 
code${...}
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/lang/src/java/org/apache/commons/lang/text/StrBuilder.java:215:
 warning - Tag @link: can't find setLength(0) in 
org.apache.commons.lang.text.StrBuilder
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/lang/src/java/org/apache/commons/lang/text/StrBuilder.java:215:
 warning - Tag @link: can't find setLength(0) in 
org.apache.commons.lang.text.StrBuilder
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/lang/src/java/org/apache/commons/lang/text/StrBuilder.java:215:
 warning - Tag @link: can't find setLength(0) in 
org.apache.commons.lang.text.StrBuilder
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/lang/src/java/org/apache/commons/lang/text/StrBuilder.java:215:
 warning - Tag @link: can't find setLength(0) in 
org.apache.commons.lang.text.StrBuilder
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/lang/src/java/org/apache/commons/lang/text/StrBuilder.java:330:
 warning - @param argument obj is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/lang/src/java/org/apache/commons/lang/text/StrBuilder.java:497:
 warning - @param argument value is not a parameter name.
  [javadoc] 

[GUMP@brutus]: Project commons-io (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-io *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:
http://brutus.apache.org/gump/public/jakarta-commons/commons-io/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [jakarta-commons-io-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-io/gump_work/build_jakarta-commons_commons-io.html
Work Name: build_jakarta-commons_commons-io (Type: Build)
Work ended in a state of : Success
Elapsed: 33 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=jakarta-commons-io-06122004 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/io]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/io/target/classes:/usr/local/gump/public/workspace/jakarta-commons/io/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.io...
  [javadoc] Loading source files for package org.apache.commons.io.filefilter...
  [javadoc] Loading source files for package org.apache.commons.io.find...
  [javadoc] Loading source files for package org.apache.commons.io.input...
  [javadoc] Loading source files for package org.apache.commons.io.output...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/AndFileFilter.java:36:
 warning - Tag @link: reference not found: FileFilter
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/OrFileFilter.java:36:
 warning - Tag @link: reference not found: FileFilter
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/AndFileFilter.java:36:
 warning - Tag @link: reference not found: FileFilter
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/OrFileFilter.java:36:
 warning - Tag @link: reference not found: FileFilter
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/AndFileFilter.java:36:
 warning - Tag @link: reference not found: FileFilter
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/OrFileFilter.java:36:
 warning - Tag @link: reference not found: FileFilter
  [javadoc] Building index for all the packages and classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/AndFileFilter.java:36:
 warning - Tag @link: reference not found: FileFilter
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/OrFileFilter.java:36:
 warning - Tag @link: reference not found: FileFilter
  [javadoc] Building index for all classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/AndFileFilter.java:36:
 warning - Tag @link: reference not found: FileFilter
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/OrFileFilter.java:36:
 warning - Tag @link: reference not found: FileFilter
  [javadoc] 

[GUMP@brutus]: Project commons-daemon (in module jakarta-commons) success

2004-12-06 Thread Stefan Bodewig
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-daemon *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-daemon/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-daemon-06122004.jar] identifier set to project 
name



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-daemon/gump_work/build_jakarta-commons_commons-daemon.html
Work Name: build_jakarta-commons_commons-daemon (Type: Build)
Work ended in a state of : Success
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dcomponent.name=daemon-06122004 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/daemon]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar
-
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/target/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/target/tests

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/target/conf

compile:
[javac] Compiling 6 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/target/classes

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.daemon...
  [javadoc] Loading source files for package 
org.apache.commons.daemon.support...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...

dist:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist/lib
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist/logs
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist
 [copy] Copying 35 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist/bin/unix/jsvc-src
  [tar] Building tar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist/bin/jsvc.tar.gz
   [delete] Deleting directory 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist/bin/unix

init:
 [echo]  daemon-06122004 1.0 

prepare:

static:

compile:

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/target/classes/META-INF
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/daemon/dist/commons-daemon-06122004.jar

BUILD SUCCESSFUL
Total time: 4 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-daemon/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-daemon/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #30.


[GUMP@brutus]: Project commons-attributes (in module jakarta-commons) success

2004-12-06 Thread Sam Ruby
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-attributes *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-attributes/index.html

That said, some information snippets are provided here.


The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-attributes/gump_work/build_jakarta-commons_commons-attributes.html
Work Name: build_jakarta-commons_commons-attributes (Type: Build)
Work ended in a state of : Success
Elapsed: 5 secs
Command Line: java -Djava.awt.headless=true org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name.api=commons-attributes-api-06122004 
-Dfinal.name.compiler=commons-attributes-compiler-06122004 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/attributes]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/attributes/target/classes:/usr/local/gump/public/workspace/jakarta-commons/attributes/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/packages/qdox-1.5/qdox-1.5.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/attributes/compiler/src/java/org/apache/commons/attributes/compiler/AttributeCompiler.java:453:
 warning: getFile() in com.thoughtworks.qdox.model.JavaSource has been 
deprecated
[javac] return javaClass.getSource ().getFile ();
[javac]^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/attributes/compiler/src/java/org/apache/commons/attributes/compiler/AttributeCompiler.java:481:
 warning: project in org.apache.tools.ant.ProjectComponent has been deprecated
[javac] DirectoryScanner ds = 
fs.getDirectoryScanner(project);
[javac]  ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/attributes/compiler/src/java/org/apache/commons/attributes/compiler/AttributeCompiler.java:482:
 warning: project in org.apache.tools.ant.ProjectComponent has been deprecated
[javac] File fromDir = fs.getDir(project);
[javac]  ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/attributes/compiler/src/java/org/apache/commons/attributes/compiler/AttributeIndexer.java:88:
 warning: project in org.apache.tools.ant.ProjectComponent has been deprecated
[javac] this.classPath = new Path(project);
[javac]   ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/attributes/compiler/src/java/org/apache/commons/attributes/validation/AttributeValidatorTask.java:97:
 warning: project in org.apache.tools.ant.ProjectComponent has been deprecated
[javac] this.classPath = new Path(project);
[javac]   ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/attributes/compiler/src/java/org/apache/commons/attributes/validation/AttributeValidatorTask.java:161:
 warning: project in org.apache.tools.ant.ProjectComponent has been deprecated
[javac] AntClassLoader cl = new AntClassLoader (this.getClass 
().getClassLoader (), project, classPath, true);   
[javac] 
^
[javac] 8 warnings
 [copy] Copying 2 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/attributes/target/classes

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/attributes/target/commons-attributes-api-06122004.jar
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/attributes/target/commons-attributes-compiler-06122004.jar

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/attributes/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.attributes...
  [javadoc] Constructing Javadoc information...
  [javadoc] 

[GUMP@brutus]: Project commons-compress (in module jakarta-commons-sandbox) success

2004-12-06 Thread commons-compress development
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-compress *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-compress/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-compress-06122004.jar] identifier set to project 
name
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/compress/build.properties
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/compress/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/compress/project.properties
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-compress/gump_work/build_jakarta-commons-sandbox_commons-compress.html
Work Name: build_jakarta-commons-sandbox_commons-compress (Type: Build)
Work ended in a state of : Success
Elapsed: 20 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/compress]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-

Plugin 'maven-deploy-plugin' in project 'Commons Compress' is not available
build:start:

java:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/compress/target/classes

java:compile:
[echo] Compiling to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/compress/target/classes
[javac] Compiling 19 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/compress/target/classes

java:jar-resources:
Copying 2 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/compress/target/classes
Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/compress/target/classes/META-INF

test:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/compress/target/test-classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/compress/target/test-reports

test:test-resources:

test:compile:
[javac] Compiling 10 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/compress/target/test-classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.

test:test:
[junit] Running org.apache.commons.compress.bzip2.test.BzipTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 7.633 sec
[junit] Running org.apache.commons.compress.tar.TarTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.432 sec
[junit] Running org.apache.commons.compress.tar.TarTestSuite
[junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.391 sec
[junit] Running org.apache.commons.compress.zip.AsiExtraFieldTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.399 sec
[junit] Running org.apache.commons.compress.zip.ExtraFieldUtilsTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.402 sec
[junit] Running org.apache.commons.compress.zip.ZipEntryTestCase
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.404 sec
[junit] Running org.apache.commons.compress.zip.ZipLongTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.39 sec
[junit] Running org.apache.commons.compress.zip.ZipShortTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.395 sec

jar:jar:
[jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/compress/target/commons-compress-06122004.jar
BUILD SUCCESSFUL
Total time: 19 seconds
Finished at: Mon Dec 06 15:39:36 PST 2004

-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-compress/rss.xml
- Atom: 

[GUMP@brutus]: Project commons-jjar (in module jakarta-commons-sandbox) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jjar *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-jjar/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [jjar.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-jjar/gump_work/build_jakarta-commons-sandbox_commons-jjar.html
Work Name: build_jakarta-commons-sandbox_commons-jjar (Type: Build)
Work ended in a state of : Success
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Dminml2.jar=/usr/local/gump/public/workspace/jakarta-commons-sandbox/jjar/lib/MinML2.jar
 -Djunit.jar=/usr/local/gump/public/workspace/dist/junit/junit.jar dist 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/jjar]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons-sandbox/jjar/classes:/usr/local/gump/public/workspace/jakarta-commons-sandbox/jjar/tests:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons-sandbox/jjar/lib/MinML2.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jjar/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jjar/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jjar/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.jjar...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jjar/dist/docs/api/index-all.html...
  [javadoc] simple class to handle JJAR version information
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jjar/src/java/org/apache/commons/jjar/Version.java:28:
 warning - The first sentence is interpreted to be:

  [javadoc]   should be of format 
  [javadoc]  major.minor-modifier
  [javadoc] This sentence is different from what will be interpreted as the 
first sentence in the
  [javadoc] next major release (when that interpretation will be 
internationalized), which is:
  [javadoc] simple class to handle JJAR version information

  [javadoc]   should be of format 
  [javadoc]  major.
  [javadoc] To avoid this note, change the doc comment to make this a proper 
first sentence, then
  [javadoc] use -breakiterator from that point forward, which will output this 
new sentence.
  [javadoc] Building index for all classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jjar/src/java/org/apache/commons/jjar/Version.java:28:
 warning - The first sentence is interpreted to be:
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jjar/dist/docs/api/org/apache/commons/jjar/package-summary.html...
  [javadoc] simple class to handle JJAR version information

  [javadoc]   should be of format 
  [javadoc]  major.minor-modifier
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] simple class to handle JJAR version information

  [javadoc]   should be of format 
  [javadoc]  major.
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jjar/dist/docs/api/stylesheet.css...
  [javadoc] 2 warnings

dist:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jjar/dist
 [copy] Copying 1 file to 

[GUMP@brutus]: Project commons-threading (in module jakarta-commons-sandbox) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-threading *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-threading/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-threading-06122004.jar] identifier set to project 
name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-threading/gump_work/build_jakarta-commons-sandbox_commons-threading.html
Work Name: build_jakarta-commons-sandbox_commons-threading (Type: Build)
Work ended in a state of : Success
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dcomponent.version=06122004 dist 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/threading]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar
-
  [javadoc] next major release (when that interpretation will be 
internationalized), which is:
  [javadoc] pAn strongAlarm/strong is a timer that can be run in one of
  [javadoc]  three modes:/p
  [javadoc]  ul
  [javadoc]  libCONTINUOUS/b - Fires at regular intervals until stopped.
  [javadoc] To avoid this note, change the doc comment to make this a proper 
first sentence, then
  [javadoc] use -breakiterator from that point forward, which will output this 
new sentence.
  [javadoc] pA strongPublisher/strong is an object that wants to send 
messages
  [javadoc]  (i.e.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] pA strongPublisher/strong is an object that wants to send 
messages
  [javadoc]  (i.e. arbitrary objects) to zero or more registered Subscribers.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/threading/src/java/org/apache/commons/threading/Publisher.java:32:
 warning - The first sentence is interpreted to be:
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/threading/src/java/org/apache/commons/threading/Subscriber.java:35:
 warning - The first sentence is interpreted to be:
  [javadoc] A strongSubscriber/strong is an object that wants to receive 
messages
  [javadoc]  (i.e.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] A strongSubscriber/strong is an object that wants to receive 
messages
  [javadoc]  (i.e. arbitrary objects) from Publishers to whom it is subscribed.
  [javadoc] Building index for all classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/threading/src/java/org/apache/commons/threading/Publisher.java:32:
 warning - The first sentence is interpreted to be:
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/threading/dist/docs/api/org/apache/commons/threading/package-summary.html...
  [javadoc] pA strongPublisher/strong is an object that wants to send 
messages
  [javadoc]  (i.e.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] pA strongPublisher/strong is an object that wants to send 
messages
  [javadoc]  (i.e. arbitrary objects) to zero or more registered Subscribers.
  [javadoc] A strongSubscriber/strong is an object that wants to receive 
messages
  [javadoc]  (i.e.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] A strongSubscriber/strong is an object that wants to receive 
messages
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/threading/src/java/org/apache/commons/threading/Subscriber.java:35:
 warning - The first sentence is interpreted to be:
  [javadoc]  (i.e. arbitrary objects) from Publishers to whom it is subscribed.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/threading/src/java/org/apache/commons/threading/Alarm.java:61:
 

cvs commit: jakarta-commons/validator/src/share/org/apache/commons/validator Field.java

2004-12-06 Thread niallp
niallp  2004/12/06 16:00:15

  Modified:validator/src/share/org/apache/commons/validator Field.java
  Log:
  Revert back to version 1.35
  
  Revision  ChangesPath
  1.37  +87 -94
jakarta-commons/validator/src/share/org/apache/commons/validator/Field.java
  
  Index: Field.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/validator/src/share/org/apache/commons/validator/Field.java,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- Field.java12 Nov 2004 16:02:52 -  1.36
  +++ Field.java7 Dec 2004 00:00:15 -   1.37
  @@ -50,6 +50,13 @@
   public class Field implements Cloneable, Serializable {
   
   /**
  + * This is the value that will be used as a key if the codeArg/code
  + * name field has no value.
  + */
  +private static final String DEFAULT_ARG =
  +org.apache.commons.validator.Field.DEFAULT;
  +
  +/**
* This indicates an indexed property is being referenced.
*/
   public static final String TOKEN_INDEXED = [];
  @@ -85,16 +92,12 @@
   protected FastHashMap hMsgs = new FastHashMap();
   
   /**
  - * List containing the 'default' arguments
  - * @since Validator 1.2.0
  - */
  -protected List defaultArgs;
  -
  -/**
  - * Map containing the 'overriden' arguments.
  - * @since Validator 1.2.0
  + * Holds Maps of arguments.  args[0] returns the Map for the first 
  + * replacement argument.  Start with a 0 length array so that it will
  + * only grow to the size of the highest argument position.
  + * @since Validator 1.1
*/
  -protected Map overridenArgs;
  +protected Map[] args = new Map[0];
   
   /**
* Gets the page value that the Field is associated with for
  @@ -190,14 +193,12 @@
   
   this.dependencyList.clear();
   
  -if (this.depends != null) {
  -StringTokenizer st = new StringTokenizer(depends, ,);
  -while (st.hasMoreTokens()) {
  -String depend = st.nextToken().trim();
  +StringTokenizer st = new StringTokenizer(depends, ,);
  +while (st.hasMoreTokens()) {
  +String depend = st.nextToken().trim();
   
  -if (depend != null  depend.length()  0) {
  -this.dependencyList.add(depend);
  -}
  +if (depend != null  depend.length()  0) {
  +this.dependencyList.add(depend);
   }
   }
   }
  @@ -239,31 +240,38 @@
* @since Validator 1.1
*/
   public void addArg(Arg arg) {
  +// TODO this first if check can go away after arg0, etc. are removed 
from dtd
  +if (arg == null || arg.getKey() == null || arg.getKey().length() == 
0) {
  +return;
  +}
   
  -// Determine if 'default' or 'overriden'
  -boolean isDefaultArg = arg.getName() == null;
  -
  -if (isDefaultArg) {
  +this.ensureArgsCapacity(arg);
   
  -if (defaultArgs == null) {
  -defaultArgs = new ArrayList();
  -}
  -int pos = defaultArgs.size();
  -arg.setPosition(pos);
  -defaultArgs.add(arg);
  +Map argMap = this.args[arg.getPosition()];
  +if (argMap == null) {
  +argMap = new HashMap();
  +this.args[arg.getPosition()] = argMap;
  +}
   
  +if (arg.getName() == null) {
  +argMap.put(DEFAULT_ARG, arg);
   } else {
  +argMap.put(arg.getName(), arg);
  +}
   
  -if (overridenArgs == null) {
  -overridenArgs = new HashMap();
  -}
  -int position = arg.getPosition();
  -if (position  0) {
  -position = defaultArgs ==  null ? 0 : defaultArgs.size() - 1;
  -arg.setPosition(position);
  -}
  -overridenArgs.put(arg.getName() + position, arg);
  +}
   
  +/**
  + * Ensures that the args array can hold the given arg.  Resizes the 
array as
  + * necessary.
  + * @param arg Determine if the args array is long enough to store this 
arg's
  + * position.
  + */
  +private void ensureArgsCapacity(Arg arg) {
  +if (arg.getPosition() = this.args.length) {
  +Map[] newArgs = new Map[arg.getPosition() + 1];
  +System.arraycopy(this.args, 0, newArgs, 0, this.args.length);
  +this.args = newArgs;
   }
   }
   
  @@ -273,16 +281,7 @@
* @since Validator 1.1
*/
   public Arg getArg(int position) {
  -
  -if (position  0) {
  -return null;
  -}
  -
  -Arg arg = null; 
  -if (defaultArgs != null  position  defaultArgs.size()) {
  -arg = 

Re: digester newbie question

2004-12-06 Thread Mihai C.
Thanks Simon and Matthijs for your detailed replies and the next questions 
will go user list with [digester] in head of subject :).
Finnaly addSetRoot allowed me to addObject imediatelly after pushing the 
Factory instance on stack.
What happens now is that when /b is reached, the stack is poped (top BBean 
obj) and after, the processB is called with whatever is on top of stack 
(ABean). And here I get the error.
I must implement some mechanism to keep a copy of the top BBean past the 
/b tag.

Anyway, I now I think I understood the problem, which counts as 90% of the 
sollution.

Thanks again,
--mihai
- Original Message - 
From: simon [EMAIL PROTECTED]
To: Jakarta Commons Developers List [EMAIL PROTECTED]
Sent: Monday, December 06, 2004 5:07 PM
Subject: Re: digester newbie question


On Mon, 2004-12-06 at 23:36, simon wrote:
   Digester d = new Digester();
   d.push(this); //stack bottom
   d.addSetNext(  root/a/b,   processB , BBean); // when
 root/a/b pattern mathes, execute processB on 'this' with BBean type 
 param
   d.addSetNext(  root/a,   processA, ABean); // when 
 root/a
 pattern mathes, execute processA on 'this' with ABean type param
   d.addObjectCreate( root/a,   ABean.class);
   d.addObjectCreate( root/a/b, BBean.class);

 I get this error:

 [DEBUG] Digester - -[SetNextRule]{root/a/b} Call
 Factory.processB([EMAIL PROTECTED])
 [ERROR] Digester - -End event threw exception
 java.lang.IllegalArgumentException: argument type
 mismatchjava.lang.IllegalArgumentException: argument type mismatch



 Obviously, processB() was called with the wrong arg type(ABean instead 
 of
 BBean) and that because the BBean obj was just poped from the stack.

No, I think what is happening is that Digester is attempting to call a
method
   processB(BBean)
on an object of type ABean. The ABean class presumably doesn't have such
a method.
On re-reading the exception trace, I see I didn't look carefully enough
the first time.
I still stand by my original comments, but the reason you are getting
this message:
[DEBUG] Digester - -[SetNextRule]{root/a/b} Call
Factory.processB([EMAIL PROTECTED])
is because you called d.addSetNext(root/a/b, ...) before you called
d.addObjectCreate(root/a/b, ...). This means that when the b element
is found, an attempt is made to call processB (passing the top object on
the stack) before the BBean object has been created and pushed on the
stack.
If you ensure the rules creating the ABean and BBean objects are added
before the rules that call processA/processB, then you will get a
*different* problem (being the one I described in my earlier email) but
I think this will at least be a step forward...
You may find it useful to download the source distribution of
digester-1.6 and look in the src/examples directory to see some simple
examples of how to use the commons digester.
And in future, please direct this sort of question to the user list
rather than the developer list. Almost all jakarta developers are also
watching the user list, so you lose nothing by asking on the correct
list. In addition there are many experienced coders on the user list who
could help, but are not subscribed to the dev list.
Cheers,
Simon

-
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]


[GUMP@brutus]: Project commons-collections (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-collections *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-collections/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-collections-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-collections/gump_work/build_jakarta-commons_commons-collections.html
Work Name: build_jakarta-commons_commons-collections (Type: Build)
Work ended in a state of : Success
Elapsed: 42 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dcomponent.version=06122004 dist 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons/collections]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/classes:/usr/local/gump/public/workspace/jakarta-commons/collections/build/tests:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.collections...
  [javadoc] Loading source files for package 
org.apache.commons.collections.bag...
  [javadoc] Loading source files for package 
org.apache.commons.collections.bidimap...
  [javadoc] Loading source files for package 
org.apache.commons.collections.buffer...
  [javadoc] Loading source files for package 
org.apache.commons.collections.collection...
  [javadoc] Loading source files for package 
org.apache.commons.collections.comparators...
  [javadoc] Loading source files for package 
org.apache.commons.collections.functors...
  [javadoc] Loading source files for package 
org.apache.commons.collections.iterators...
  [javadoc] Loading source files for package 
org.apache.commons.collections.keyvalue...
  [javadoc] Loading source files for package 
org.apache.commons.collections.list...
  [javadoc] Loading source files for package 
org.apache.commons.collections.map...
  [javadoc] Loading source files for package 
org.apache.commons.collections.set...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...

tf.validate:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/testframework
[javac] Compiling 12 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/testframework
   [delete] Deleting directory 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/testframework

tf.jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/testframework
 [copy] Copying 39 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/testframework
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/testframework/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/testframework/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/testframework/META-INF
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/tfconf
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/tfconf
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/collections/build/commons-collections-testframework-06122004.jar

dist.bin:
[mkdir] Created dir: 

[GUMP@brutus]: Project commons-pool (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-pool *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:
http://brutus.apache.org/gump/public/jakarta-commons/commons-pool/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-pool.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-pool/gump_work/build_jakarta-commons_commons-pool.html
Work Name: build_jakarta-commons_commons-pool (Type: Build)
Work ended in a state of : Success
Elapsed: 5 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/pool]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar
-
[javac] pool = new CursorableLinkedList();
[javac]^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/pool/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java:1033:
 warning: org.apache.commons.collections.CursorableLinkedList in 
org.apache.commons.collections has been deprecated
[javac] CursorableLinkedList pool = 
(CursorableLinkedList)(_poolMap.get(key));
[javac] ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/pool/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java:1033:
 warning: org.apache.commons.collections.CursorableLinkedList in 
org.apache.commons.collections has been deprecated
[javac] CursorableLinkedList pool = 
(CursorableLinkedList)(_poolMap.get(key));
[javac]  ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/pool/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java:1035:
 warning: org.apache.commons.collections.CursorableLinkedList in 
org.apache.commons.collections has been deprecated
[javac] pool = new CursorableLinkedList();
[javac]^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/pool/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java:1097:
 warning: org.apache.commons.collections.CursorableLinkedList in 
org.apache.commons.collections has been deprecated
[javac] CursorableLinkedList pool = 
(CursorableLinkedList)(_poolMap.get(key));
[javac] ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/pool/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java:1097:
 warning: org.apache.commons.collections.CursorableLinkedList in 
org.apache.commons.collections has been deprecated
[javac] CursorableLinkedList pool = 
(CursorableLinkedList)(_poolMap.get(key));
[javac]  ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/pool/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java:1150:
 warning: org.apache.commons.collections.CursorableLinkedList in 
org.apache.commons.collections has been deprecated
[javac] if ((_minIdle == 0)  
(((CursorableLinkedList)(_poolMap.get(key))).isEmpty())) {
[javac]   ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/pool/src/java/org/apache/commons/pool/impl/GenericObjectPool.java:420:
 warning: org.apache.commons.collections.CursorableLinkedList in 
org.apache.commons.collections has been deprecated
[javac] _pool = new CursorableLinkedList();
[javac] ^
[javac] 30 warnings

build-jar:
[mkdir] Created dir: 

[GUMP@brutus]: Project commons-launcher (in module jakarta-commons) success

2004-12-06 Thread Stefan Bodewig
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-launcher *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-launcher/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-launcher.jar] identifier set to project name
 -DEBUG- Dependency on ant exists, no need to add for property ant.home.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-launcher/gump_work/build_jakarta-commons_commons-launcher.html
Work Name: build_jakarta-commons_commons-launcher (Type: Build)
Work ended in a state of : Success
Elapsed: 5 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dant.home=/usr/local/gump/public/workspace/ant/dist 
dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/launcher]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar
-
javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.launcher...
  [javadoc] Loading source files for package 
org.apache.commons.launcher.types...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/src/java/org/apache/commons/launcher/ChildMain.java:147:
 warning - @param argument args is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/src/java/org/apache/commons/launcher/Launcher.java:491:
 warning - @param argument message is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/src/java/org/apache/commons/launcher/Launcher.java:855:
 warning - @param argument a is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/src/java/org/apache/commons/launcher/LaunchTask.java:849:
 warning - @param argument classpath is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/src/java/org/apache/commons/launcher/LaunchTask.java:946:
 warning - @param argument redirect is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/src/java/org/apache/commons/launcher/types/ConditionalVariable.java:108:
 warning - @param argument value is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/src/java/org/apache/commons/launcher/types/ConditionalVariable.java:119:
 warning - @param argument value is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/src/java/org/apache/commons/launcher/types/ConditionalVariable.java:159:
 warning - @param argument value is not a parameter name.
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/dist/docs/api/stylesheet.css...
  [javadoc] 8 warnings

dist:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/dist/bin
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/dist/lib
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/dist/logs
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/dist
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/launcher/dist
   

[GUMP@brutus]: Project commons-collections-testframework (in module jakarta-commons) success

2004-12-06 Thread Gump
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-collections-testframework *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-collections-testframework/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-collections-testframework-06122004.jar] 
identifier set to project name
 -INFO- No license on redistributable project with outputs.

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-collections-testframework/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-collections-testframework/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #88.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-email (in module jakarta-commons) success

2004-12-06 Thread dIon Gillard
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-email *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-email/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-email-06122004.jar] identifier set to project name
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/jakarta-commons/email/build.properties
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/jakarta-commons/email/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/jakarta-commons/email/project.properties
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-email/gump_work/build_jakarta-commons_commons-email.html
Work Name: build_jakarta-commons_commons-email (Type: Build)
Work ended in a state of : Success
Elapsed: 12 secs
Command Line: maven --offline jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/email]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/dumbster/build/dumbster.jar:/usr/local/gump/packages/javamail-1.3.2/mail.jar:/usr/local/gump/packages/javamail-1.3.2/lib/mailapi.jar:/usr/local/gump/packages/jaf-1.0.1/activation.jar
-
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0

Plugin 'maven-deploy-plugin' in project 'Commons Email' is not available
build:start:

java:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/email/target/classes

java:compile:
[echo] Compiling to 
/home/gump/workspaces2/public/workspace/jakarta-commons/email/target/classes
[javac] Compiling 8 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/email/target/classes

java:jar-resources:

test:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/email/target/test-classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/email/target/test-reports

test:test-resources:

test:compile:
[javac] Compiling 13 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/email/target/test-classes

test:test:
[junit] Running org.apache.commons.mail.DefaultAuthenticatorTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.033 sec
[junit] Running org.apache.commons.mail.EmailAttachmentTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.153 sec
[junit] Running org.apache.commons.mail.EmailTest
[junit] Tests run: 36, Failures: 0, Errors: 0, Time elapsed: 2.316 sec
[junit] Running org.apache.commons.mail.HtmlEmailTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 1.008 sec
[junit] Running org.apache.commons.mail.MultiPartEmailTest
[junit] Tests run: 10, Failures: 0, Errors: 0, Time elapsed: 0.831 sec
[junit] Running org.apache.commons.mail.SendWithAttachmentsTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.366 sec
[junit] Running org.apache.commons.mail.SimpleEmailTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.231 sec

jar:jar:
[jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/email/target/commons-email-06122004.jar
BUILD SUCCESSFUL
Total time: 12 seconds
Finished at: Mon Dec 06 17:00:12 PST 2004

-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-email/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-email/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #89.

--
Apache Gump

[GUMP@brutus]: Project commons-grant (in module commons-grant) success

2004-12-06 Thread commons-grant development
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-grant *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:
http://brutus.apache.org/gump/public/commons-grant/commons-grant/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-grant-06122004.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/commons-grant/commons-grant/gump_work/build_commons-grant_commons-grant.html
Work Name: build_commons-grant_commons-grant (Type: Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-grant-06122004 -f build.xml dist 
[Working Directory: /usr/local/gump/public/workspace/commons-grant]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/commons-grant/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/commons-grant/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/commons-grant/target/classes
[javac] Compiling 3 source files to 
/home/gump/workspaces2/public/workspace/commons-grant/target/classes
[javac] 
/home/gump/workspaces2/public/workspace/commons-grant/src/java/org/apache/commons/grant/GrantProject.java:102:
 warning: 
replaceProperties(org.apache.tools.ant.Project,java.lang.String,java.util.Hashtable)
 in org.apache.tools.ant.ProjectHelper has been deprecated
[javac] return ProjectHelper.replaceProperties(this, value, 
getProperties());
[javac] ^
[javac] 1 warning

compile-tests:

internal-test:

test:

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/commons-grant/target/commons-grant-06122004.jar

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/commons-grant/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.grant...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/commons-grant/src/java/org/apache/commons/grant/PropsHandler.java:43:
 warning - Tag @see: can't find setPropertyIfUndefinedByUser in 
org.apache.commons.grant.GrantProject
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/commons-grant/dist/docs/api/stylesheet.css...
  [javadoc] 1 warning

dist:
 [copy] Copying 2 files to 
/home/gump/workspaces2/public/workspace/commons-grant/dist

BUILD SUCCESSFUL
Total time: 3 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: http://brutus.apache.org/gump/public/commons-grant/commons-grant/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/commons-grant/commons-grant/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #90.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-jux (in module jakarta-commons-sandbox) success

2004-12-06 Thread commons-jux development team
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jux *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-jux/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jux-06122004.jar] identifier set to project name
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/jux/build.properties
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/jux/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/jux/project.properties
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-jux/gump_work/build_jakarta-commons-sandbox_commons-jux.html
Work Name: build_jakarta-commons-sandbox_commons-jux (Type: Build)
Work ended in a state of : Success
Elapsed: 5 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/jux]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons-sandbox/jux/target/classes:/usr/local/gump/public/workspace/jakarta-commons-sandbox/jux/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0

Plugin 'maven-deploy-plugin' in project 'commons-jux' is not available
build:start:

java:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jux/target/classes

java:compile:
[echo] Compiling to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jux/target/classes
[javac] Compiling 1 source file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jux/target/classes

java:jar-resources:
Copying 3 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jux/target/classes
Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jux/target/classes/META-INF

test:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jux/target/test-classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jux/target/test-reports

test:test-resources:

test:compile:
[javac] Compiling 3 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jux/target/test-classes
[copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jux/target/classes

test:test:
[junit] Running org.apache.commons.jux.TestAll
[junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.415 sec

jar:jar:
[jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/jux/target/commons-jux-06122004.jar
BUILD SUCCESSFUL
Total time: 5 seconds
Finished at: Mon Dec 06 17:00:49 PST 2004

-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-jux/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-jux/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #92.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-dbcp (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-dbcp *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:
http://brutus.apache.org/gump/public/jakarta-commons/commons-dbcp/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-dbcp.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-dbcp/gump_work/build_jakarta-commons_commons-dbcp.html
Work Name: build_jakarta-commons_commons-dbcp (Type: Build)
Work ended in a state of : Success
Elapsed: 8 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/dbcp]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/dbcp/dist/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/packages/jdbc2_0/jdbc2_0-stdext.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/pool/dist/commons-pool.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar
-
javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/dbcp/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.dbcp...
  [javadoc] Loading source files for package 
org.apache.commons.dbcp.cpdsadapter...
  [javadoc] Loading source files for package 
org.apache.commons.dbcp.datasources...
  [javadoc] Loading source files for package org.apache.commons.jocl...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons/dbcp/dist/docs/api/overview-summary.html...
  [javadoc] p
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/overview.html:
 warning - The first sentence is interpreted to be:
  [javadoc]  Commons Database Connection Pooling
  [javadoc]   
  [javadoc] This sentence is different from what will be interpreted as the 
first sentence in the
  [javadoc] next major release (when that interpretation will be 
internationalized), which is:
  [javadoc] p
  [javadoc]  Commons Database Connection Pooling
  [javadoc]   /p
  [javadoc] To avoid this note, change the doc comment to make this a proper 
first sentence, then
  [javadoc] use -breakiterator from that point forward, which will output this 
new sentence.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/BasicDataSource.java:237:
 warning - @param argument poolPreparedStatements is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/BasicDataSourceFactory.java:120:
 warning - @param argument nameCts is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/DelegatingCallableStatement.java:65:
 warning - @param argument cs is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/DelegatingResultSet.java:70:
 warning - @param argument Statement is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/DelegatingResultSet.java:70:
 warning - @param argument ResultSet is not a parameter name.
  [javadoc] 

[GUMP@brutus]: Project commons-graph (in module jakarta-commons-sandbox) success

2004-12-06 Thread commons-graph development
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-graph *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-graph/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-graph-06122004.jar] identifier set to project name
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/graph2/build.properties
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/graph2/project.xml
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-graph/gump_work/build_jakarta-commons-sandbox_commons-graph.html
Work Name: build_jakarta-commons-sandbox_commons-graph (Type: Build)
Work ended in a state of : Success
Elapsed: 7 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/graph2]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons-sandbox/graph2/target/classes:/usr/local/gump/public/workspace/jakarta-commons-sandbox/graph2/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/packages/jdepend-2.6/lib/jdepend.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/logging-log4j/log4j-06122004.jar:/usr/local/gump/public/workspace/logging-log4j/log4j-chainsaw-06122004.jar:/usr/local/gump/packages/nsuml/lib/nsuml.jar
-
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0

Plugin 'maven-deploy-plugin' in project 'Graph' is not available
build:start:

java:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/graph2/target/classes

java:compile:
[echo] Compiling to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/graph2/target/classes
[javac] Compiling 61 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/graph2/target/classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.

java:jar-resources:
Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/graph2/target/classes
Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/graph2/target/classes/META-INF

test:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/graph2/target/test-classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/graph2/target/test-reports

test:test-resources:

test:compile:
[javac] Compiling 15 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/graph2/target/test-classes

test:test:

jar:jar:
[jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/graph2/target/commons-graph-06122004.jar
BUILD SUCCESSFUL
Total time: 6 seconds
Finished at: Mon Dec 06 17:12:03 PST 2004

-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-graph/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-graph/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #122.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-transaction (in module jakarta-commons) success

2004-12-06 Thread Adam Jack
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-transaction *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-transaction/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-transaction-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-transaction/gump_work/build_jakarta-commons_commons-transaction.html
Work Name: build_jakarta-commons_commons-transaction (Type: Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dversion=06122004 jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons/transaction]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/logging-log4j/log4j-06122004.jar:/usr/local/gump/public/workspace/logging-log4j/log4j-chainsaw-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/codec/dist/commons-codec-06122004.jar:/usr/local/gump/packages/j2ee_connector-1_5-fr/connector-api.jar:/usr/local/gump/packages/jta-spec1_0_1/jta-spec1_0_1.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
 [echo] |   instead of 'true', that library is not present.
 [echo] +---

 [echo] Environment:
 [echo]   Java home /opt/__versions__/jdk1.4.2_05/jre
 [echo]   Java version  1.4

 [echo] Build options:
 [echo]   Generate debugging info   true
 [echo]   Display deprecation info  true
 [echo]   Optimize  true

 [echo] Directories:
 [echo]   Build directory   
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/build
 [echo]   Distribution directory
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/dist
 [echo]   JBoss deploy directory${jboss.deploy.dir}

 [echo] Optional Libraries:
 [echo]   J2EE API  true
 [echo]   Servlet API   ${servlet.present}


detect.fail:

detect:

prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/build
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/build/doc
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/build/doc/apidocs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/build/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/build/lib
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/build/deploy

build:
[javac] Compiling 30 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/build/classes
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/src/java/org/apache/commons/transaction/file/FileResourceManager.java:940:
 warning: encode(java.lang.String) in java.net.URLEncoder has been deprecated
[javac] path = URLEncoder.encode(path);
[javac]  ^
[javac] 1 warning

build-jca:
[javac] Compiling 8 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/build/classes

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/build/lib/commons-transaction-06122004.jar
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/transaction/dist/lib

BUILD SUCCESSFUL
Total time: 3 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 

[GUMP@brutus]: Project commons-functor (in module jakarta-commons-sandbox) success

2004-12-06 Thread commons-functor development team
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-functor *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-functor/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-functor-06122004.jar] identifier set to project 
name
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/functor/build.properties
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/functor/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/functor/project.properties
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-functor/gump_work/build_jakarta-commons-sandbox_commons-functor.html
Work Name: build_jakarta-commons-sandbox_commons-functor (Type: Build)
Work ended in a state of : Success
Elapsed: 12 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/functor]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons-sandbox/functor/target/classes:/usr/local/gump/public/workspace/jakarta-commons-sandbox/functor/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons-sandbox/functor/src/test:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0

Plugin 'maven-deploy-plugin' in project 'Commons Functor' is not available
build:start:

java:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/functor/target/classes

java:compile:
[echo] Compiling to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/functor/target/classes
[javac] Compiling 115 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/functor/target/classes

java:jar-resources:
Copying 4 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/functor/target/classes
Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/functor/target/classes/META-INF

test:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/functor/target/test-classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/functor/target/test-reports

test:test-resources:
Copying 156 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/functor/target/test-classes

test:compile:
[javac] Compiling 154 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/functor/target/test-classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.

test:test:
[junit] Running org.apache.commons.functor.TestAll
[junit] Tests run: 792, Failures: 0, Errors: 0, Time elapsed: 3.016 sec

jar:jar:
[jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/functor/target/commons-functor-06122004.jar
BUILD SUCCESSFUL
Total time: 12 seconds
Finished at: Mon Dec 06 17:12:26 PST 2004

-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-functor/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-functor/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #124.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-primitives (in module jakarta-commons) success

2004-12-06 Thread Gump
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-primitives *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-primitives/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-primitives-1.1-dev.jar] identifier set to project 
name
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/jakarta-commons/primitives/build.properties
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/jakarta-commons/primitives/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/jakarta-commons/primitives/project.properties
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-primitives/gump_work/build_jakarta-commons_commons-primitives.html
Work Name: build_jakarta-commons_commons-primitives (Type: Build)
Work ended in a state of : Success
Elapsed: 13 secs
Command Line: maven --offline jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/primitives]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/primitives/target/classes:/usr/local/gump/public/workspace/jakarta-commons/primitives/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-testframework-06122004.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0

Plugin 'maven-deploy-plugin' in project 'Commons Primitives' is not available
build:start:

java:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/primitives/target/classes

java:compile:
[echo] Compiling to 
/home/gump/workspaces2/public/workspace/jakarta-commons/primitives/target/classes
[javac] Compiling 270 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/primitives/target/classes

java:jar-resources:

test:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/primitives/target/test-classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/primitives/target/test-reports

test:test-resources:

test:compile:
[javac] Compiling 187 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/primitives/target/test-classes

test:test:
[junit] Running org.apache.commons.collections.primitives.AllTestSuite
[junit] Tests run: 4433, Failures: 0, Errors: 0, Time elapsed: 3.585 sec

jar:jar:
[jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/primitives/target/commons-primitives-1.1-dev.jar
BUILD SUCCESSFUL
Total time: 13 seconds
Finished at: Mon Dec 06 17:19:44 PST 2004

-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-primitives/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-primitives/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #152.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-http (in module jakarta-commons-sandbox) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-http *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-http/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-http.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-http/gump_work/build_jakarta-commons-sandbox_commons-http.html
Work Name: build_jakarta-commons-sandbox_commons-http (Type: Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dcomponent.version=06122004 dist 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/http]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar
-
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/target/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/target/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/target/tests

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/target/conf

compile:
[javac] Compiling 3 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/target/classes

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.http...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/src/java/org/apache/commons/http/HttpHeaderTokenizer.java:41:
 warning - Tag @link: can't find HeaderElement in 
org.apache.commons.http.HttpHeaderTokenizer
  [javadoc] Building index for all classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/src/java/org/apache/commons/http/HttpHeaderTokenizer.java:41:
 warning - Tag @link: can't find HeaderElement in 
org.apache.commons.http.HttpHeaderTokenizer
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/src/java/org/apache/commons/http/HttpHeaderTokenizer.java:41:
 warning - Tag @link: can't find HeaderElement in 
org.apache.commons.http.HttpHeaderTokenizer
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/src/java/org/apache/commons/http/HttpHeaderTokenizer.java:41:
 warning - Tag @link: can't find HeaderElement in 
org.apache.commons.http.HttpHeaderTokenizer
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/src/java/org/apache/commons/http/HttpHeaderTokenizer.java:41:
 warning - Tag @link: can't find HeaderElement in 
org.apache.commons.http.HttpHeaderTokenizer
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/dist/docs/api/stylesheet.css...
  [javadoc] 5 warnings

dist:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/dist
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/dist

init:
 [echo]  http 06122004 

prepare:

static:

compile:

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/http/target/classes/META-INF
 

[GUMP@brutus]: Project commons-logging (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-logging *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-logging/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-logging/gump_work/build_jakarta-commons_commons-logging.html
Work Name: build_jakarta-commons_commons-logging (Type: Build)
Work ended in a state of : Success
Elapsed: 6 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/logging]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/logging-log4j/log4j-06122004.jar:/usr/local/gump/public/workspace/logging-log4j/log4j-chainsaw-06122004.jar:/usr/local/gump/public/workspace/avalon-trunk/runtime/logkit/target/deliverables/jars/avalon-logkit-06122004.jar:/usr/local/gump/public/workspace/avalon-tools/tools/magic/target/deliverables/jars/avalon-tools-magic-06122004.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
 [echo] Preparing build directory...
 [echo] 

static:

compile:
[javac] Compiling 2 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/target/classes
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/target/commons-logging.jar

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/optional/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/optional/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/optional/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.logging.impl...
  [javadoc] Constructing Javadoc information...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/optional/src/java/org/apache/commons/logging/impl/MemoryLog.java:25:
 cannot resolve symbol
  [javadoc] symbol  : class Log 
  [javadoc] location: package logging
  [javadoc] import org.apache.commons.logging.Log;
  [javadoc]   ^
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/optional/src/java/org/apache/commons/logging/impl/MemoryLog.java:35:
 cannot resolve symbol
  [javadoc] symbol  : class Log 
  [javadoc] location: class org.apache.commons.logging.impl.MemoryLog
  [javadoc] public class MemoryLog implements Log {
  [javadoc]   ^
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...
  [javadoc] javadoc: Error while reading file 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/optional/src/java/overview.html
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/optional/src/java/org/apache/commons/logging/impl/WeakHashtable.java:69:
 warning - Tag @link: reference not found: 
org.apache.commons.logging.LogFactory#release(ClassLoader) 
LogFactory.release(ClassLoader)
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/optional/dist/docs/api/stylesheet.css...
  [javadoc] 1 error
  [javadoc] 3 warnings

dist:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/optional/dist
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/dist
 [copy] Copying 23 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/logging/dist/docs-optional
 [copy] Copying 1 file to 

[GUMP@brutus]: Project commons-jexl (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jexl *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:
http://brutus.apache.org/gump/public/jakarta-commons/commons-jexl/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jexl-06122004.jar] identifier set to project name
 -INFO- Made directory 
[/usr/local/gump/public/workspace/jakarta-commons/jexl/target/classes]
 -INFO- Made directory 
[/usr/local/gump/public/workspace/jakarta-commons/jexl/target/test-classes]
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-jexl/gump_work/build_jakarta-commons_commons-jexl.html
Work Name: build_jakarta-commons_commons-jexl (Type: Build)
Work ended in a state of : Success
Elapsed: 9 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jexl-06122004 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/jexl]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/target/classes:/usr/local/gump/public/workspace/jakarta-commons/jexl/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar
-
  [javadoc]   h2a name=introIntroduction/a/h2
  [javadoc]   p
  [javadoc]This package only contains one class, Asserter, which
  [javadoc]allows you to use a JEXL expression in a JUnit assertion.
  [javadoc]
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/jexl/src/java/org/apache/commons/jexl/junit/package.html:
 warning - The first sentence is interpreted to be:
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons/jexl/dist/docs/api/org/apache/commons/jexl/junit/package-summary.html...
  [javadoc] Using JEXL expressions in JUnit assertions
  [javadoc]   brbr
  [javadoc]   
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] Using JEXL expressions in JUnit assertions
  [javadoc]   brbr
  [javadoc]   p
  [javadoc]ul
  [javadoc] lia href=#introIntroduction/a/li
  [javadoc]/ul
  [javadoc]   /p
  [javadoc]   h2a name=introIntroduction/a/h2
  [javadoc]   p
  [javadoc]This package only contains one class, Asserter, which
  [javadoc]allows you to use a JEXL expression in a JUnit assertion.
  [javadoc]
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/jexl/src/java/org/apache/commons/jexl/parser/ASTNENode.java:27:
 warning - The first sentence is interpreted to be:
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons/jexl/dist/docs/api/org/apache/commons/jexl/parser/package-summary.html...
  [javadoc] != or ne
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] !
  [javadoc] useful interface to node.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/jexl/src/java/org/apache/commons/jexl/parser/SimpleNode.java:27:
 warning - The first sentence is interpreted to be:
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] useful interface to node. most autogened by javacc
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/jexl/src/java/org/apache/commons/jexl/JexlExprResolver.java:11:
 warning - @todo is an unknown tag.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/jexl/src/java/org/apache/commons/jexl/JexlExprResolver.java:24:
 warning - @todo is an unknown tag.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/jexl/src/java/org/apache/commons/jexl/parser/SimpleCharStream.java:356:
 warning - The first sentence is interpreted to be:
  [javadoc] 

[GUMP@brutus]: Project commons-cli (in module jakarta-commons) success

2004-12-06 Thread James Strachan
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-cli *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:
http://brutus.apache.org/gump/public/jakarta-commons/commons-cli/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-cli-06122004.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-cli/gump_work/build_jakarta-commons_commons-cli.html
Work Name: build_jakarta-commons_commons-cli (Type: Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dmaven.final.name=commons-cli-06122004 -f 
build-gump.xml jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/cli]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar
-
Buildfile: build-gump.xml

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/cli/target/classes
[javac] Compiling 63 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/cli/target/classes
[javac] Note: 
/home/gump/workspaces2/public/workspace/jakarta-commons/cli/src/java/org/apache/commons/cli/TypeHandler.java
 uses or overrides a deprecated API.
[javac] Note: Recompile with -deprecation for details.
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: http://brutus.apache.org/gump/public/jakarta-commons/commons-cli/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-cli/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #168.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-el (in module jakarta-commons) success

2004-12-06 Thread Stefan Bodewig
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-el *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:
http://brutus.apache.org/gump/public/jakarta-commons/commons-el/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-el.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-el/gump_work/build_jakarta-commons_commons-el.html
Work Name: build_jakarta-commons_commons-el (Type: Build)
Work ended in a state of : Success
Elapsed: 6 secs
Command Line: java -Djava.awt.headless=true org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/el]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar
-
  [javadoc] 8 warnings

dist:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/el/dist
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/el/dist
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/el/dist

init:
 [echo]  el 1.1-dev 

prepare:

static:

build-servletapi:
 [echo] == Building: 
../../jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar

prepare:

static:

compile:

jar:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-servletapi-5/jsr154/build

build-jspapi:
 [echo] == Building: 
../../jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar

prepare:

static:

compile:

jar:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-servletapi-5/jsr152/build

compile-only:

compile:

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/el/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/el/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/el/target/classes/META-INF
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/el/dist/commons-el.jar

BUILD SUCCESSFUL
Total time: 6 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: http://brutus.apache.org/gump/public/jakarta-commons/commons-el/rss.xml
- Atom: http://brutus.apache.org/gump/public/jakarta-commons/commons-el/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #171.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-discovery (in module jakarta-commons) success

2004-12-06 Thread Richard Sitze
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-discovery *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-discovery/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-discovery.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-discovery/gump_work/build_jakarta-commons_commons-discovery.html
Work Name: build_jakarta-commons_commons-discovery (Type: Build)
Work ended in a state of : Success
Elapsed: 5 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/discovery]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar
-
  [javadoc]  //- groupContext::Object Cache
  [javadoc]  // Cache : HashMap
  [javadoc]  // Key   : groupContext (codeString/code)
  [javadoc]  //Value : codeObject/code
  [javadoc]  
  [javadoc]  When we 'release', it is expected that the caller of the 'release'
  [javadoc]  have the same thread context class loader... as that will be used
  [javadoc]  to identify cached entries to be released.
  [javadoc] [this was ServiceDiscovery12...
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] [this was ServiceDiscovery12... the 1.1 versus 1.2 issue
  [javadoc]  has been abstracted to org.apache.commons.discover.jdk.JDKHooks]
  [javadoc]  
  [javadoc]  pImplement the JDK1.3 'Service Provider' specification
  [javadoc] Represents a Service Programming Interface (spi).
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] Represents a Service Programming Interface (spi)
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/discovery/src/java/org/apache/commons/discovery/log/SimpleLog.java:136:
 warning - @param argument level is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/discovery/src/java/org/apache/commons/discovery/log/SimpleLog.java:152:
 warning - @param argument logLevel is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/discovery/src/java/org/apache/commons/discovery/tools/DiscoverClass.java:278:
 warning - @param argument properties is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/discovery/src/java/org/apache/commons/discovery/tools/DiscoverClass.java:302:
 warning - @param argument spiClass is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/discovery/src/java/org/apache/commons/discovery/tools/DiscoverClass.java:492:
 warning - @param argument properties is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/discovery/src/java/org/apache/commons/discovery/tools/DiscoverClass.java:523:
 warning - @param argument spiClass is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/discovery/src/java/org/apache/commons/discovery/tools/DiscoverClass.java:601:
 warning - @param argument attribute is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/discovery/src/java/org/apache/commons/discovery/tools/DiscoverSingleton.java:327:
 warning - @param argument properties is not a parameter name.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/discovery/src/java/org/apache/commons/discovery/tools/DiscoverSingleton.java:360:
 warning - @param argument spiClass is not a parameter name.
  [javadoc] 

[GUMP@brutus]: Project commons-beanutils (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-beanutils *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-beanutils/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on junit exists, no need to add for property junit.home.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-beanutils/gump_work/build_jakarta-commons_commons-beanutils.html
Work Name: build_jakarta-commons_commons-beanutils (Type: Build)
Work ended in a state of : Success
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Djunit.home=/usr/local/gump/public/workspace/dist/junit jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/beanutils]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
Buildfile: build.xml

init:
 [echo]  beanutils 1.7.1-dev 

prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/target
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/target/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/target/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/target/tests

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/target/conf

compile:
[javac] Compiling 81 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/target/classes
[javac] Note: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/WrapDynaClass.java
 uses or overrides a deprecated API.
[javac] Note: Recompile with -deprecation for details.
 [copy] Copying 6 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/target/classes

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/target/classes/META-INF
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils.jar
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/dist

BUILD SUCCESSFUL
Total time: 3 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-beanutils/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-beanutils/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #190.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-digester (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-digester *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-digester/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-digester.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-digester/gump_work/build_jakarta-commons_commons-digester.html
Work Name: build_jakarta-commons_commons-digester (Type: Build)
Work ended in a state of : Success
Elapsed: 6 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/digester]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar
-
Buildfile: build.xml

init:
 [echo]  digester 1.7-dev 

prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/target
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/target/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/target/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/target/tests

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/target/conf

compile:
[javac] Compiling 69 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/target/classes
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -deprecation for details.
 [copy] Copying 8 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/target/classes
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/target/classes/META-INF

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.digester...
  [javadoc] Loading source files for package 
org.apache.commons.digester.parser...
  [javadoc] Loading source files for package 
org.apache.commons.digester.plugins...
  [javadoc] Loading source files for package 
org.apache.commons.digester.plugins.strategies...
  [javadoc] Loading source files for package 
org.apache.commons.digester.substitution...
  [javadoc] Loading source files for package 
org.apache.commons.digester.xmlrules...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...

dist:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/dist
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/dist
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/dist
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/dist/commons-digester.jar

BUILD 

[GUMP@brutus]: Project commons-modeler (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-modeler *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-modeler/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-modeler-06122004.jar] identifier set to project 
name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-modeler/gump_work/build_jakarta-commons_commons-modeler.html
Work Name: build_jakarta-commons_commons-modeler (Type: Build)
Work ended in a state of : Success
Elapsed: 6 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dcomponent.name=modeler-06122004 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/modeler]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxtools.jar
-
prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/target
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/target/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/target/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/target/tests

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/target/conf

compile-only:
[javac] Compiling 36 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/target/classes
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -deprecation for details.
 [copy] Copying 5 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/target/classes

compile:

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/target/classes/META-INF
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar

dist-lite:

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.modeler...
  [javadoc] Loading source files for package org.apache.commons.modeler.ant...
  [javadoc] Loading source files for package 
org.apache.commons.modeler.mbeans...
  [javadoc] Loading source files for package 
org.apache.commons.modeler.modules...
  [javadoc] Loading source files for package org.apache.commons.modeler.util...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...

dist:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/dist
 [copy] Copying 2 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/dist
 [copy] Copying 2 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/modeler/dist
  [jar] Building jar: 

[GUMP@brutus]: Project commons-digester-rss (in module jakarta-commons) success

2004-12-06 Thread Robert Burrell Donkin
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-digester-rss *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-digester-rss/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-digester-rss.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-digester-rss/gump_work/build_jakarta-commons_commons-digester-rss.html
Work Name: build_jakarta-commons_commons-digester-rss (Type: Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only dist 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons/digester/src/examples/rss]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar
-
Buildfile: build.xml

init:
 [echo]  digester-rss 1.6-dev 

prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/target
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/target/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/target/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/target/tests

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/target/conf

compile:
[javac] Compiling 5 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/target/classes
 [copy] Copying 2 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/target/classes
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/target/classes/META-INF

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.digester.rss...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...

dist:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/dist
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/digester/src/examples/rss/dist/commons-digester-rss.jar

BUILD SUCCESSFUL
Total time: 3 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-digester-rss/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-digester-rss/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 

[GUMP@brutus]: Project commons-messenger (in module jakarta-commons-sandbox) success

2004-12-06 Thread James Strachan
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-messenger *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-messenger/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-messenger-06122004.jar] identifier set to project 
name
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/messenger/build.properties
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/messenger/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/messenger/project.properties
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-messenger/gump_work/build_jakarta-commons-sandbox_commons-messenger.html
Work Name: build_jakarta-commons-sandbox_commons-messenger (Type: Build)
Work ended in a state of : Success
Elapsed: 7 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/messenger]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons-sandbox/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar:/usr/local/gump/packages/jms1.0.2/lib/geronimo-spec-jms-DEV.jar:/usr/local/gump/packages/jta-spec1_0_1/geronimo-spec-jta-DEV.jar
-
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0

Plugin 'maven-deploy-plugin' in project 'Commons messenger' is not available
build:start:

java:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/messenger/target/classes

java:compile:
[echo] Compiling to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/messenger/target/classes
[javac] Compiling 56 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/messenger/target/classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.

java:jar-resources:
Copying 2 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/messenger/target/classes
Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/messenger/target/classes/META-INF

test:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/messenger/target/test-classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/messenger/target/test-reports

test:test-resources:

test:compile:
[javac] Compiling 4 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/messenger/target/test-classes

test:test:
[junit] Running org.apache.commons.messenger.LockTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.031 sec

jar:jar:
[jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/messenger/target/commons-messenger-06122004.jar
BUILD SUCCESSFUL
Total time: 6 seconds
Finished at: Mon Dec 06 17:29:17 PST 2004

-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-messenger/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-messenger/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, 

[GUMP@brutus]: Project commons-betwixt (in module jakarta-commons) failed

2004-12-06 Thread James Strachan
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-betwixt has an issue affecting its community integration.
This issue affects 12 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-betwixt :  Commons Betwixt Package
- commons-jelly-tags-betwixt :  This is a Jelly interface for Betwixt.
- commons-sql :  Basic Services Architecture
- db-torque :  Persistence Layer
- fulcrum-intake :  Services Framework
- fulcrum-security-adapter-turbine :  Services Framework
- jakarta-jetspeed :  Enterprise Information Portal
- jakarta-turbine-2 :  A servlet based framework.
- jakarta-turbine-3 :  A servlet based framework.
- jakarta-turbine-stratum :  Turbine Components
- maven-bootstrap :  Project Management Tools
- scarab :  Issue Tracking Built for the Ages


Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-betwixt/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-betwixt-06122004.jar] identifier set to project 
name
 -INFO- Failed with reason build failed
 -DEBUG- Extracted fallback artifacts from Gump Repository



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-betwixt/gump_work/build_jakarta-commons_commons-betwixt.html
Work Name: build_jakarta-commons_commons-betwixt (Type: Build)
Work ended in a state of : Failed
Elapsed: 7 secs
Command Line: java -Djava.awt.headless=true -Dbuild.clonevm=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-betwixt-06122004 
-Dresourcedir=/usr/local/gump/public/workspace/jakarta-commons/betwixt jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/betwixt]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/betwixt/target/classes:/usr/local/gump/public/workspace/jakarta-commons/betwixt/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/src/java/org/apache/commons/betwixt/io/BeanCreateRule.java:507:
 warning: isPrimitiveType(java.lang.Class) in 
org.apache.commons.betwixt.digester.XMLIntrospectorHelper has been deprecated
[javac] if ( XMLIntrospectorHelper.isPrimitiveType( 
beanClass ) ) {
[javac]   ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/src/java/org/apache/commons/betwixt/io/BeanCreateRule.java:574:
 warning: body(java.lang.String) in org.apache.commons.digester.Rule has been 
deprecated
[javac] public void body(String text) throws Exception {
[javac] ^
[javac] 10 warnings
 [copy] Copying 12 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/target/classes
 [copy] Copying 32 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/target/test-classes

compile-tests:
[javac] Compiling 224 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/target/test-classes
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/src/test/org/apache/commons/betwixt/TestBeanReader.java:384:
 warning: toGMTString() in java.util.Date has been deprecated
[javac] assertEquals(Incorrect date property, date.toGMTString(), 
readBean.getDateOfParty().toGMTString());  
[javac] 

[GUMP@brutus]: Project commons-configuration (in module jakarta-commons) success

2004-12-06 Thread dIon Gillard
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-configuration *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-configuration/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-configuration-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-configuration/gump_work/build_jakarta-commons_commons-configuration.html
Work Name: build_jakarta-commons_commons-configuration (Type: Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dmaven.final.name=commons-configuration-06122004 -f 
build-gump.xml jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons/configuration]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar
-
Buildfile: build-gump.xml

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/configuration/target/classes
[javac] Compiling 41 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/configuration/target/classes
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/configuration/target/commons-configuration-06122004.jar

BUILD SUCCESSFUL
Total time: 3 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-configuration/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-configuration/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #210.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-beanutils-bean-collections (in module jakarta-commons) success

2004-12-06 Thread Robert Burrell Donkin
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-beanutils-bean-collections *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-beanutils-bean-collections/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-beanutils-bean-collections.jar] identifier set to 
project name
 -DEBUG- Dependency on junit exists, no need to add for property junit.home.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-beanutils-bean-collections/gump_work/build_jakarta-commons_commons-beanutils-bean-collections.html
Work Name: build_jakarta-commons_commons-beanutils-bean-collections (Type: 
Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Djunit.home=/usr/local/gump/public/workspace/dist/junit jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons/beanutils/optional/bean-collections]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
Buildfile: build.xml

init:
 [echo]  beanutils 1.7.1-dev 

prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target/tests

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target/conf

compile:
[javac] Compiling 6 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target/classes
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target/classes

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/target/classes/META-INF
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/optional/bean-collections/dist/commons-beanutils-bean-collections.jar
  [jar] Updating jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-beanutils-bean-collections/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-beanutils-bean-collections/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, 

[GUMP@brutus]: Project commons-configuration-10 (in module jakarta-commons-configuration-10) success

2004-12-06 Thread dIon Gillard
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-configuration-10 *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-configuration-10/commons-configuration-10/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-configuration-1.0.jar] identifier set to project 
name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-configuration-10/commons-configuration-10/gump_work/build_jakarta-commons-configuration-10_commons-configuration-10.html
Work Name: build_jakarta-commons-configuration-10_commons-configuration-10 
(Type: Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dmaven.final.name=commons-configuration-1.0 -f 
build-gump.xml jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons-configuration-10]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons-configuration-10/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar
-
Buildfile: build-gump.xml

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-configuration-10/target/classes
[javac] Compiling 29 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-configuration-10/target/classes
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons-configuration-10/target/commons-configuration-1.0.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons-configuration-10/commons-configuration-10/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons-configuration-10/commons-configuration-10/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #216.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-resources (in module jakarta-commons) success

2004-12-06 Thread Stefan Bodewig
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-resources *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-resources/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-resources-06122004.jar] identifier set to project 
name
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/jakarta-commons/resources/build.properties
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/jakarta-commons/resources/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/jakarta-commons/resources/project.properties
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-resources/gump_work/build_jakarta-commons_commons-resources.html
Work Name: build_jakarta-commons_commons-resources (Type: Build)
Work ended in a state of : Success
Elapsed: 7 secs
Command Line: maven --offline jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/resources]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/resources/target/classes:/usr/local/gump/public/workspace/jakarta-commons/resources/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/resources/test:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/packages/iBATIS_DBL-2.0.5.399/ibatis-dao-2.jar:/usr/local/gump/packages/iBATIS_DBL-2.0.5.399/ibatis-common-2.jar:/usr/local/gump/packages/iBATIS_DBL-2.0.5.399/ibatis-sqlmap-2.jar:/usr/local/gump/public/workspace/jdom/build/jdom.jar:/usr/local/gump/public/workspace/hsqldb/lib/hsqldb.jar
-
java:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/resources/target/classes

java:compile:
[echo] Compiling to 
/home/gump/workspaces2/public/workspace/jakarta-commons/resources/target/classes
[javac] Compiling 25 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/resources/target/classes

java:jar-resources:

test:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/resources/target/test-classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/resources/target/test-reports

test:test-resources:
Copying 13 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/resources/target/test-classes

test:compile:
[javac] Compiling 15 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/resources/target/test-classes

test:test:
[junit] Running org.apache.commons.resources.impl.BasicMessageListTestCase
[junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.035 sec
[junit] Running org.apache.commons.resources.impl.BasicMessageTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.016 sec
[junit] Running 
org.apache.commons.resources.impl.CollectionResourcesBaseTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.024 sec
[junit] Running org.apache.commons.resources.impl.JDBCResourcesTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.595 sec
[junit] Running org.apache.commons.resources.impl.PropertyResourcesTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
[junit] Running 
org.apache.commons.resources.impl.ResourceBundleResourcesFactoryTestCase
[junit] Tests 

[GUMP@brutus]: Project commons-jxpath (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jxpath *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-jxpath/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jxpath.jar] identifier set to project name
 -ERROR- Output with id xml-apis was not found in project xml-xerces 
 -ERROR- Unhandled Property: jaxp.jaxp.jar on: Ant on Project:commons-jxpath
 -WARNING- Invalid ID [xml-apis] for dependency on [xml-xerces]
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-jxpath/gump_work/build_jakarta-commons_commons-jxpath.html
Work Name: build_jakarta-commons_commons-jxpath (Type: Build)
Work ended in a state of : Success
Elapsed: 33 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/xalan-unbundled.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Djunit.jar=/usr/local/gump/public/workspace/dist/junit/junit.jar 
-Djaxp.xslt.jar=/usr/local/gump/public/workspace/xml-xalan/java/build/xalan-unbundled.jar
 
-Dj2ee.jar=/usr/local/gump/public/workspace/jakarta-servletapi/dist/lib/servlet.jar
 -Djaxp.jaxp.jar=*Unset* -Dcomponent.version=06122004 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/jxpath]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/jxpath/target/classes:/usr/local/gump/public/workspace/jakarta-commons/jxpath/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jdom/build/jdom.jar:/usr/local/gump/public/workspace/jakarta-velocity/bin/velocity-06122004.jar:/usr/local/gump/public/workspace/avalon-trunk/runtime/logkit/target/deliverables/jars/avalon-logkit-06122004.jar:/usr/local/gump/public/workspace/avalon-tools/tools/magic/target/deliverables/jars/avalon-tools-magic-06122004.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi/dist/lib/servlet.jar
-
  [javadoc] Returns true if the operation is not sensitive to the order of 
arguments,
  [javadoc]  e.g.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] Returns true if the operation is not sensitive to the order of 
arguments,
  [javadoc]  e.g. =, and etc, and false if it is, e.g. 
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/jxpath/src/java/org/apache/commons/jxpath/ri/compiler/CoreOperationUnion.java:55:
 warning - The first sentence is interpreted to be:
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons/jxpath/dist/docs/api/org/apache/commons/jxpath/ri/compiler/CoreOperationUnion.html...
  [javadoc] Returns the XPath symbol for this operation, e.g.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/jxpath/src/java/org/apache/commons/jxpath/ri/compiler/CoreOperationUnion.java:51:
 warning - The first sentence is interpreted to be:
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] Returns the XPath symbol for this operation, e.g. +, div, etc.
  [javadoc] Returns true if the operation is not sensitive to the order of 
arguments,
  [javadoc]  e.g.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] Returns true if the operation is not sensitive to the order of 
arguments,
  [javadoc]  e.g. =, and etc, and false if it is, 

[GUMP@brutus]: Project commons-fileupload (in module jakarta-commons) success

2004-12-06 Thread John McNally
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-fileupload *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-fileupload/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-fileupload-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-fileupload/gump_work/build_jakarta-commons_commons-fileupload.html
Work Name: build_jakarta-commons_commons-fileupload (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dmaven.final.name=commons-fileupload-06122004 -f 
build-gump.xml jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/fileupload]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/fileupload/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-servletapi/dist/lib/servlet.jar:/usr/local/gump/public/workspace/jakarta-pluto/container/target/pluto-1.0.jar:/usr/local/gump/public/workspace/jakarta-pluto/api/target/portlet-api-1.0.jar:/usr/local/gump/public/workspace/jakarta-pluto/portal/target/pluto-portal-1.0.jar:/usr/local/gump/public/workspace/jakarta-commons/io/dist/jakarta-commons-io-06122004.jar
-
Buildfile: build-gump.xml

jar:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/fileupload/target/classes
[javac] Compiling 17 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/fileupload/target/classes
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons/fileupload/target/commons-fileupload-06122004.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-fileupload/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-commons/commons-fileupload/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #242.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-validator (in module jakarta-commons) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-validator *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-validator/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-validator.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-validator/gump_work/build_jakarta-commons_commons-validator.html
Work Name: build_jakarta-commons_commons-validator (Type: Build)
Work ended in a state of : Success
Elapsed: 5 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/validator]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/jakarta-oro/jakarta-oro-06122004.jar
-
 [copy] Copying 14 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/validator/target/classes

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/validator/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/validator/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons/validator/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.validator...
  [javadoc] Loading source files for package 
org.apache.commons.validator.util...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/validator/src/share/org/apache/commons/validator/UrlValidator.java:120:
 warning - The first sentence is interpreted to be:
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons/validator/dist/docs/api/index-all.html...
  [javadoc] Schema/Protocol (ie.
  [javadoc] This sentence is different from what will be interpreted as the 
first sentence in the
  [javadoc] next major release (when that interpretation will be 
internationalized), which is:
  [javadoc] Schema/Protocol (ie. http:, ftp:, file:, etc).
  [javadoc] To avoid this note, change the doc comment to make this a proper 
first sentence, then
  [javadoc] use -breakiterator from that point forward, which will output this 
new sentence.
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/validator/src/share/org/apache/commons/validator/UrlValidator.java:136:
 warning - The first sentence is interpreted to be:
  [javadoc] Protocol (ie.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] Protocol (ie. http:, ftp:,https:).
  [javadoc] Building index for all classes...
  [javadoc] 
/home/gump/workspaces2/public/workspace/jakarta-commons/validator/src/share/org/apache/commons/validator/UrlValidator.java:120:
 warning - The first sentence is interpreted to be:
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/jakarta-commons/validator/dist/docs/api/org/apache/commons/validator/UrlValidator.html...
  [javadoc] Schema/Protocol (ie.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  

[GUMP@brutus]: Project commons-jelly (in module jakarta-commons) success

2004-12-06 Thread Stefan Bodewig
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-jelly/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-06122004.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-jelly/gump_work/build_jakarta-commons_commons-jelly.html
Work Name: build_jakarta-commons_commons-jelly (Type: Build)
Work ended in a state of : Success
Elapsed: 26 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-06122004 -f build.xml jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/jelly]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar
-
[junit] -  ---

[junit] Testcase: testParserCache1 took 0.364 sec
[junit] Testcase: testParserCache2 took 0.095 sec
[junit] Running org.apache.commons.jelly.test.xml.TestXMLValidation
[junit] Testsuite: org.apache.commons.jelly.test.xml.TestXMLValidation
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.498 sec
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.498 sec
[junit] - Standard Error -
[junit] Dec 6, 2004 5:49:06 PM org.apache.commons.jelly.parser.XMLParser 
error
[junit] SEVERE: Parse Error at line 31 column -1: Attribute var is not 
declared for element j:set.
[junit] org.xml.sax.SAXParseException: Attribute var is not declared for 
element j:set.
[junit] at org.apache.crimson.parser.Parser2.error(Parser2.java:3354)
[junit] at 
org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1595)
[junit] at org.apache.crimson.parser.Parser2.content(Parser2.java:1963)
[junit] at 
org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1691)
[junit] at 
org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:667)
[junit] at org.apache.crimson.parser.Parser2.parse(Parser2.java:337)
[junit] at 
org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:448)
[junit] at 
org.apache.commons.jelly.parser.XMLParser.parse(XMLParser.java:238)
[junit] at org.apache.commons.jelly.Jelly.compileScript(Jelly.java:125)
[junit] at 
org.apache.commons.jelly.test.xml.TestXMLValidation.testInvalidXML1Validation(TestXMLValidation.java:90)
[junit] 

[GUMP@brutus]: Project commons-jelly-tags-junit (in module jelly-tags) failed

2004-12-06 Thread Morgan Delagrange
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-junit has an issue affecting its community 
integration.
This issue affects 18 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-ant :  This is a Jelly interface for Ant.
- commons-jelly-tags-bean :  A tag library for mapping tags to beans using 
a similar appr...
- commons-jelly-tags-beanshell :  This is a Jelly interface for BeanShell.
- commons-jelly-tags-define :  This is a Jelly taglib for defining new tags 
and tag librari...
- commons-jelly-tags-dynabean :  This is a Jelly taglib for defining new 
tags and tag librari...
- commons-jelly-tags-fmt :  This is a set of Jelly i18n tags.
- commons-jelly-tags-html :  These Jelly tags can scrub commons errors in 
HTML syntax.
- commons-jelly-tags-jsl :  The Jelly Stylesheet Library (JSL)
- commons-jelly-tags-junit :  The Jelly Unit Test Tags
- commons-jelly-tags-log :  The Jelly Logging Tags
- commons-jelly-tags-sql :  This is a Jelly interface for SQL
- commons-jelly-tags-threads :  A library for processing Jelly scripts 
using multiple thread...
- commons-jelly-tags-util :  This is a set of Jelly utility tags.
- commons-jelly-tags-validate :  This is a Jelly interface for XML 
validation.
- commons-jelly-tags-xml :  ???
- commons-jelly-tags-xmlunit :  This is a Jelly interface for unit testing 
XML applications.
- commons-latka :  Functional Testing Suite
- maven :  Project Management Tools


Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-junit/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-junit-06122004.jar] identifier set to 
project name
 -INFO- Failed with reason build failed
 -DEBUG- Extracted fallback artifacts from Gump Repository



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-junit/gump_work/build_jelly-tags_commons-jelly-tags-junit.html
Work Name: build_jelly-tags_commons-jelly-tags-junit (Type: Build)
Work ended in a state of : Failed
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true -Dbuild.clonevm=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-junit-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/junit]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/junit/target/classes:/usr/local/gump/public/workspace/jelly-tags/junit/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar
-
Buildfile: build.xml

init:
[mkdir] 

[GUMP@brutus]: Project commons-jelly-tags-avalon (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-avalon *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-avalon/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-avalon-06122004.jar] identifier set to 
project name
 -INFO- MkDir attempt on pre-existing directory 
[/usr/local/gump/public/workspace/jelly-tags/avalon/src/test]
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-avalon/gump_work/build_jelly-tags_commons-jelly-tags-avalon.html
Work Name: build_jelly-tags_commons-jelly-tags-avalon (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-avalon-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/avalon]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/avalon/target/classes:/usr/local/gump/public/workspace/jelly-tags/avalon/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/public/workspace/avalon-trunk/runtime/framework/api/target/deliverables/jars/avalon-framework-api-06122004.jar:/usr/local/gump/public/workspace/avalon-tools/tools/magic/target/deliverables/jars/avalon-tools-magic-06122004.jar:/usr/local/gump/public/workspace/avalon-trunk/runtime/framework/legacy/target/deliverables/jars/avalon-framework-legacy-06122004.jar:/usr/local/gump/public/workspace/avalon-trunk/runtime/framework/impl/target/deliverables/jars/avalon-framework-impl-06122004.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/avalon/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/avalon/target/classes
[javac] Compiling 2 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/avalon/target/classes
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jelly-tags/avalon/target/test-classes

compile-tests:

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/avalon/target/test-reports

test:

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jelly-tags/avalon/target/commons-jelly-tags-avalon-06122004.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 

[GUMP@brutus]: Project commons-jelly-tags-email (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-email *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-email/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-email-06122004.jar] identifier set to 
project name
 -INFO- MkDir attempt on pre-existing directory 
[/usr/local/gump/public/workspace/jelly-tags/email/src/test]
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-email/gump_work/build_jelly-tags_commons-jelly-tags-email.html
Work Name: build_jelly-tags_commons-jelly-tags-email (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-email-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/email]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/email/target/classes:/usr/local/gump/public/workspace/jelly-tags/email/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/packages/jaf-1.0.1/activation.jar:/usr/local/gump/packages/javamail-1.3.2/mail.jar:/usr/local/gump/packages/javamail-1.3.2/lib/mailapi.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/email/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/email/target/classes
[javac] Compiling 2 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/email/target/classes
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jelly-tags/email/target/test-classes

compile-tests:

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/email/target/test-reports

test:

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jelly-tags/email/target/commons-jelly-tags-email-06122004.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-email/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-email/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #284.

--
Apache Gump
http://gump.apache.org/ [Instance: 

[GUMP@brutus]: Project commons-jelly-tags-http (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-http *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-http/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-http-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-http/gump_work/build_jelly-tags_commons-jelly-tags-http.html
Work Name: build_jelly-tags_commons-jelly-tags-http (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-http-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/http]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/http/target/classes:/usr/local/gump/public/workspace/jelly-tags/http/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/public/workspace/jakarta-commons/httpclient/dist/commons-httpclient.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/http/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/http/target/classes
[javac] Compiling 15 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/http/target/classes
[javac] 
/home/gump/workspaces2/public/workspace/jelly-tags/http/src/java/org/apache/commons/jelly/tags/http/MultipartPostTag.java:25:
 warning: org.apache.commons.httpclient.methods.MultipartPostMethod in 
org.apache.commons.httpclient.methods has been deprecated
[javac] import org.apache.commons.httpclient.methods.MultipartPostMethod;
[javac]  ^
[javac] 
/home/gump/workspaces2/public/workspace/jelly-tags/http/src/java/org/apache/commons/jelly/tags/http/MultipartPostTag.java:50:
 warning: org.apache.commons.httpclient.methods.MultipartPostMethod in 
org.apache.commons.httpclient.methods has been deprecated
[javac] private MultipartPostMethod _postMethod;
[javac] ^
[javac] 
/home/gump/workspaces2/public/workspace/jelly-tags/http/src/java/org/apache/commons/jelly/tags/http/BodyTag.java:62:
 warning: setRequestBody(java.lang.String) in 
org.apache.commons.httpclient.methods.EntityEnclosingMethod has been deprecated
[javac] postMethod.setRequestBody(bodyText);
[javac]   ^
[javac] 

[GUMP@brutus]: Project commons-jelly-tags-jetty (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-jetty *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-jetty/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-jetty-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-jetty/gump_work/build_jelly-tags_commons-jelly-tags-jetty.html
Work Name: build_jelly-tags_commons-jelly-tags-jetty (Type: Build)
Work ended in a state of : Success
Elapsed: 5 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-jetty-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/jetty]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/jetty/target/classes:/usr/local/gump/public/workspace/jelly-tags/jetty/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/public/workspace/jakarta-commons/httpclient/dist/commons-httpclient.jar:/usr/local/gump/public/workspace/jakarta-commons/codec/dist/commons-codec-06122004.jar:/usr/local/gump/packages/jetty-4.2.21/lib/org.mortbay.jetty.jar:/usr/local/gump/public/workspace/jelly-tags/http/target/commons-jelly-tags-http-06122004.jar
-
[javac] Compiling 1 source file to 
/home/gump/workspaces2/public/workspace/jelly-tags/jetty/target/test-classes

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/jetty/target/test-reports
[junit] Running org.apache.commons.jelly.jetty.TestJettyHttpServerTags
[junit] Testsuite: org.apache.commons.jelly.jetty.TestJettyHttpServerTags
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.585 sec
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.585 sec
[junit] - Standard Error -
[junit] Dec 6, 2004 5:50:10 PM 
org.apache.commons.jelly.tags.jetty.JettyHttpServerTag doTag
[junit] INFO: Creating a default context
[junit] Dec 6, 2004 5:50:11 PM 
org.apache.commons.jelly.tags.jetty.JettyHttpServerTag doTag
[junit] INFO: Adding resource and not found handlers to context:/
[junit] Dec 6, 2004 5:50:11 PM 
org.apache.commons.jelly.tags.jetty.JettyHttpServerTag doTag
[junit] INFO: Creating a default context
[junit] Dec 6, 2004 5:50:11 PM 
org.apache.commons.jelly.tags.jetty.JettyHttpServerTag doTag
[junit] INFO: Adding resource and not found handlers to context:/
[junit] Dec 6, 2004 5:50:11 

[GUMP@brutus]: Project commons-jelly-tags-soap (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-soap *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-soap/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-soap-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-soap/gump_work/build_jelly-tags_commons-jelly-tags-soap.html
Work Name: build_jelly-tags_commons-jelly-tags-soap (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/serializer.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/xalan-unbundled.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-soap-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/soap]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/soap/target/classes:/usr/local/gump/public/workspace/jelly-tags/soap/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/public/workspace/ws-axis/java/build/lib/axis.jar:/usr/local/gump/public/workspace/ws-axis/java/build/lib/saaj.jar:/usr/local/gump/public/workspace/ws-axis/java/build/lib/axis-ant.jar:/usr/local/gump/public/workspace/ws-axis/java/build/lib/jaxrpc.jar:/usr/local/gump/public/workspace/xml-security/build/xmlsec.jar:/usr/local/gump/public/workspace/jakarta-commons/httpclient/dist/commons-httpclient.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/soap/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/soap/target/classes
[javac] Compiling 4 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/soap/target/classes
[javac] 
/home/gump/workspaces2/public/workspace/jelly-tags/soap/src/java/org/apache/commons/jelly/tags/soap/InvokeRawTag.java:69:
 warning: setRequestBody(java.io.InputStream) in 
org.apache.commons.httpclient.methods.EntityEnclosingMethod has been deprecated
[javac] post.setRequestBody(new StringInputStream(request));
[javac] ^
[javac] 
/home/gump/workspaces2/public/workspace/jelly-tags/soap/src/java/org/apache/commons/jelly/tags/soap/InvokeRawTag.java:78:
 warning: setRequestContentLength(int) in 

[GUMP@brutus]: Project commons-jelly-tags-swing (in module jelly-tags) failed

2004-12-06 Thread Morgan Delagrange
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-swing has an issue affecting its community 
integration.
This issue affects 1 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-swing :  This is a Jelly interface for configuring 
Swing applications...


Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-swing/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-swing-06122004.jar] identifier set to 
project name
 -INFO- Failed with reason build failed
 -DEBUG- Extracted fallback artifacts from Gump Repository



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-swing/gump_work/build_jelly-tags_commons-jelly-tags-swing.html
Work Name: build_jelly-tags_commons-jelly-tags-swing (Type: Build)
Work ended in a state of : Failed
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true -Dbuild.clonevm=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-swing-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/swing]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/swing/target/classes:/usr/local/gump/public/workspace/jelly-tags/swing/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/swing/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/swing/target/classes
[javac] Compiling 35 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/swing/target/classes
 [copy] Copying 10 files to 
/home/gump/workspaces2/public/workspace/jelly-tags/swing/target/test-classes

compile-tests:
[javac] Compiling 5 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/swing/target/test-classes

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/swing/target/test-reports
[junit] Running org.apache.commons.jelly.swing.TestConverters
[junit] Exception in thread main java.lang.NullPointerException
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter.formatOutput(XMLJUnitResultFormatter.java:265)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter.setSystemOutput(XMLJUnitResultFormatter.java:93)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.sendOutAndErr(JUnitTestRunner.java:426)
[junit] at 

[GUMP@brutus]: Project commons-jelly-tags-velocity (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-velocity *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-velocity/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-velocity-06122004.jar] identifier set 
to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-velocity/gump_work/build_jelly-tags_commons-jelly-tags-velocity.html
Work Name: build_jelly-tags_commons-jelly-tags-velocity (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-velocity-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/velocity]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/velocity/target/classes:/usr/local/gump/public/workspace/jelly-tags/velocity/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/public/workspace/jakarta-velocity/bin/velocity-06122004.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/velocity/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/velocity/target/classes
[javac] Compiling 4 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/velocity/target/classes

compile-tests:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/velocity/target/test-classes
[javac] Compiling 1 source file to 
/home/gump/workspaces2/public/workspace/jelly-tags/velocity/target/test-classes

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/velocity/target/test-reports

test:

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jelly-tags/velocity/target/commons-jelly-tags-velocity-06122004.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-velocity/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-velocity/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #289.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]


[GUMP@brutus]: Project commons-id (in module jakarta-commons-sandbox) success

2004-12-06 Thread Adam Jack
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-id *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-id/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-id-06122004.jar] identifier set to project name
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/id/build.properties
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/id/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/id/project.properties
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-id/gump_work/build_jakarta-commons-sandbox_commons-id.html
Work Name: build_jakarta-commons-sandbox_commons-id (Type: Build)
Work ended in a state of : Success
Elapsed: 23 secs
Command Line: maven --offline jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons-sandbox/id]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/jakarta-commons/codec/dist/commons-codec-06122004.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
Plugin 'maven-deploy-plugin' in project 'Commons Id' is not available
build:start:

java:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/id/target/classes

java:compile:
[echo] Compiling to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/id/target/classes
[javac] Compiling 30 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/id/target/classes

java:jar-resources:
Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/id/target/classes

test:prepare-filesystem:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/id/target/test-classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/id/target/test-reports

test:test-resources:

test:compile:
[javac] Compiling 11 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/id/target/test-classes

test:test:
[junit] Running org.apache.commons.id.uuid.clock.SystemClockImplTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.638 sec
[junit] Running org.apache.commons.id.uuid.clock.ThreadClockImplTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.648 sec
[junit] Running org.apache.commons.id.uuid.UUIDTest
[junit] Tests run: 16, Failures: 0, Errors: 0, Time elapsed: 0.574 sec
[junit] Running org.apache.commons.id.uuid.state.InMemoryStateImplTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.716 sec
[junit] Running org.apache.commons.id.uuid.state.NodeTest
[junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.663 sec
[junit] Running 
org.apache.commons.id.uuid.state.ReadOnlyResourceStateImplTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.771 sec
[junit] Running org.apache.commons.id.uuid.state.ReadWriteFileStateImplTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.73 sec
[junit] Running org.apache.commons.id.uuid.state.StateHelperTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.693 sec
[junit] Running org.apache.commons.id.IdentifierGeneratorFactoryTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.701 sec
[junit] Running org.apache.commons.id.IdentifierUtilsTest
[junit] Tests run: 16, Failures: 0, Errors: 0, Time elapsed: 0.646 sec

jar:jar:
[jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/id/target/commons-id-06122004.jar

[GUMP@brutus]: Project commons-jelly-tags-jms (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-jms *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-jms/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-jms-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-jms/gump_work/build_jelly-tags_commons-jelly-tags-jms.html
Work Name: build_jelly-tags_commons-jelly-tags-jms (Type: Build)
Work ended in a state of : Success
Elapsed: 12 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Dcommons-beanutils.jar=/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar
 -Dfinal.name=commons-jelly-tags-jms-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/jms]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/jms/target/classes:/usr/local/gump/public/workspace/jelly-tags/jms/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/public/workspace/jakarta-commons-sandbox/messenger/target/commons-messenger-06122004.jar:/usr/local/gump/packages/jms1.1/lib/jms.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/jms/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/jms/target/classes
[javac] Compiling 17 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/jms/target/classes
 [copy] Copying 8 files to 
/home/gump/workspaces2/public/workspace/jelly-tags/jms/target/test-classes

compile-tests:

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/jms/target/test-reports

test:

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jelly-tags/jms/target/commons-jelly-tags-jms-06122004.jar

BUILD SUCCESSFUL
Total time: 12 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-jms/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-jms/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #333.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]


[GUMP@brutus]: Project commons-services (in module jakarta-commons-sandbox) success

2004-12-06 Thread Ted Husted
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-services *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-services/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-services.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons-sandbox/commons-services/gump_work/build_jakarta-commons-sandbox_commons-services.html
Work Name: build_jakarta-commons-sandbox_commons-services (Type: Build)
Work ended in a state of : Success
Elapsed: 9 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only dist 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-commons-sandbox/services]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/jakarta-commons/pool/dist/commons-pool.jar
-
Buildfile: build.xml

init:
 [echo]  Service Manager Library 1.0-dev 

prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/target
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/target/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/target/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/target/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/target/docs/api
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/target/tests
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/target/conf

compile:
[javac] Compiling 17 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/target/classes
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -deprecation for details.

javadoc:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/dist/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/dist/docs/api
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source files for package org.apache.commons.services...
  [javadoc] Constructing Javadoc information...
  [javadoc] Standard Doclet version 1.4.2_05
  [javadoc] Building tree for all the packages and classes...
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...

dist:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/dist
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/target/classes/META-INF
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/target/classes/META-INF
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-commons-sandbox/services/dist/commons-services.jar

BUILD SUCCESSFUL
Total time: 9 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 

[GUMP@brutus]: Project commons-jelly-tags-interaction (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-interaction *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-interaction/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-interaction-06122004.jar] identifier 
set to project name
 -INFO- MkDir attempt on pre-existing directory 
[/usr/local/gump/public/workspace/jelly-tags/interaction/src/test]
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-interaction/gump_work/build_jelly-tags_commons-jelly-tags-interaction.html
Work Name: build_jelly-tags_commons-jelly-tags-interaction (Type: Build)
Work ended in a state of : Success
Elapsed: 6 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-interaction-06122004 
jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/interaction]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/interaction/target/classes:/usr/local/gump/public/workspace/jelly-tags/interaction/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/interaction/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/interaction/target/classes
[javac] Compiling 2 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/interaction/target/classes
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jelly-tags/interaction/target/test-classes

compile-tests:

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/interaction/target/test-reports

test:

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jelly-tags/interaction/target/commons-jelly-tags-interaction-06122004.jar

BUILD SUCCESSFUL
Total time: 5 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-interaction/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-interaction/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #365.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]


[GUMP@brutus]: Project commons-jelly-tags-swt (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-swt *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-swt/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-swt-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-swt/gump_work/build_jelly-tags_commons-jelly-tags-swt.html
Work Name: build_jelly-tags_commons-jelly-tags-swt (Type: Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-swt-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/swt]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/swing/target/classes:/usr/local/gump/public/workspace/jelly-tags/swing/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/packages/eclipse-3.0.1/plugins/org.eclipse.swt.gtk_3.0.1/ws/gtk/swt.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/swt/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/swt/target/classes
[javac] Compiling 15 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/swt/target/classes
 [copy] Copying 5 files to 
/home/gump/workspaces2/public/workspace/jelly-tags/swt/target/test-classes

compile-tests:

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/swt/target/test-reports

test:

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jelly-tags/swt/target/commons-jelly-tags-swt-06122004.jar

BUILD SUCCESSFUL
Total time: 3 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-swt/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-swt/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #366.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-jelly-tags-antlr (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-antlr *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-antlr/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-antlr-06122004.jar] identifier set to 
project name
 -INFO- MkDir attempt on pre-existing directory 
[/usr/local/gump/public/workspace/jelly-tags/antlr/src/test]
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-antlr/gump_work/build_jelly-tags_commons-jelly-tags-antlr.html
Work Name: build_jelly-tags_commons-jelly-tags-antlr (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-antlr-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/antlr]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/antlr/target/classes:/usr/local/gump/public/workspace/jelly-tags/antlr/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/packages/antlr-2.7.3/antlr.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/antlr/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/antlr/target/classes
[javac] Compiling 3 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/antlr/target/classes
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jelly-tags/antlr/target/test-classes

compile-tests:

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/antlr/target/test-reports

test:

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jelly-tags/antlr/target/commons-jelly-tags-antlr-06122004.jar

BUILD SUCCESSFUL
Total time: 1 second
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-antlr/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-antlr/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #390.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

-
To unsubscribe, e-mail: [EMAIL 

[GUMP@brutus]: Project commons-jelly-tags-quartz (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-quartz *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-quartz/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-quartz-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-quartz/gump_work/build_jelly-tags_commons-jelly-tags-quartz.html
Work Name: build_jelly-tags_commons-jelly-tags-quartz (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-quartz-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/quartz]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/quartz/target/classes:/usr/local/gump/public/workspace/jelly-tags/quartz/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/public/workspace/quartz/lib/quartz.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/quartz/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/quartz/target/classes
[javac] Compiling 7 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/quartz/target/classes
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jelly-tags/quartz/target/test-classes

compile-tests:

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/quartz/target/test-reports

test:

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jelly-tags/quartz/target/commons-jelly-tags-quartz-06122004.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-quartz/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-quartz/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #391.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



[GUMP@brutus]: Project commons-vfs (in module commons-vfs) success

2004-12-06 Thread commons-vfs development
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-vfs *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:
http://brutus.apache.org/gump/public/commons-vfs/commons-vfs/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-vfs-06122004.jar] identifier set to project name
 -INFO- Optional dependency commons-net failed with reason build failed
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/commons-vfs/commons-vfs/gump_work/build_commons-vfs_commons-vfs.html
Work Name: build_commons-vfs_commons-vfs (Type: Build)
Work ended in a state of : Success
Elapsed: 14 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-vfs-06122004 -f build.xml dist 
[Working Directory: /usr/local/gump/public/workspace/commons-vfs]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/commons-vfs/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons-sandbox/compress/target/commons-compress-06122004.jar:/usr/local/gump/public/workspace/commons-httpclient-20-branch/dist/commons-httpclient-2.0-06122004.jar:commons-net-gump-29112004.jar:/usr/local/gump/public/workspace/jakarta-slide/webdavclient/dist/lib/jakarta-slide-webdavlib-06122004.jar:/usr/local/gump/packages/jcifs/jcifs-0.8.1.jar:/usr/local/gump/packages/jsch-0.1.17/dist/lib/jsch-gump.jar
-
  [javadoc] Set the proxy to use for webdav connection.br
  [javadoc]  You have to set the ProxyPort too if you would like to have the 
proxy relly used.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] Set the proxy to use for webdav connection.
  [javadoc] 
/home/gump/workspaces2/public/workspace/commons-vfs/src/java/org/apache/commons/vfs/provider/zip/ZipFileProvider.java:86:
 warning - The first sentence is interpreted to be:
  [javadoc] Generating 
/home/gump/workspaces2/public/workspace/commons-vfs/dist/docs/api/org/apache/commons/vfs/provider/zip/ZipFileProvider.html...
  [javadoc] Get the filesystem capabilities.br
  [javadoc]  These are the same as on the filesystem, but available before the 
first filesystem was
  [javadoc]  instanciated.
  [javadoc] This sentence is different from what would be generated using 
-breakiterator: 
  [javadoc] Get the filesystem capabilities.
  [javadoc] 
/home/gump/workspaces2/public/workspace/commons-vfs/src/java/org/apache/commons/vfs/tasks/AbstractSyncTask.java:52:
 warning - @todo is an unknown tag.
  [javadoc] 
/home/gump/workspaces2/public/workspace/commons-vfs/src/java/org/apache/commons/vfs/tasks/AbstractSyncTask.java:52:
 warning - @todo is an unknown tag.
  [javadoc] 
/home/gump/workspaces2/public/workspace/commons-vfs/src/java/org/apache/commons/vfs/tasks/AbstractSyncTask.java:52:
 warning - @todo is an unknown tag.
  [javadoc] 
/home/gump/workspaces2/public/workspace/commons-vfs/src/java/org/apache/commons/vfs/tasks/AbstractSyncTask.java:52:
 warning - @todo is an unknown tag.
  [javadoc] 
/home/gump/workspaces2/public/workspace/commons-vfs/src/java/org/apache/commons/vfs/tasks/AbstractSyncTask.java:52:
 warning - @todo is an unknown tag.
  [javadoc] 
/home/gump/workspaces2/public/workspace/commons-vfs/src/java/org/apache/commons/vfs/tasks/AbstractSyncTask.java:52:
 warning - @todo is an unknown tag.
  [javadoc] 
/home/gump/workspaces2/public/workspace/commons-vfs/src/java/org/apache/commons/vfs/tasks/AbstractSyncTask.java:52:
 warning - @todo is an unknown tag.
  [javadoc] 

[GUMP@brutus]: Project commons-jelly-tags-bsf (in module jelly-tags) success

2004-12-06 Thread Morgan Delagrange
To whom it may satisfy...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-bsf *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-bsf/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-bsf-06122004.jar] identifier set to 
project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-bsf/gump_work/build_jelly-tags_commons-jelly-tags-bsf.html
Work Name: build_jelly-tags_commons-jelly-tags-bsf (Type: Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-bsf-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/bsf]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/bsf/target/classes:/usr/local/gump/public/workspace/jelly-tags/bsf/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar:/usr/local/gump/public/workspace/jakarta-bsf/build/lib/bsf.jar
-
Buildfile: build.xml

init:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/bsf/target/lib

get-deps:

compile:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/bsf/target/classes
[javac] Compiling 9 source files to 
/home/gump/workspaces2/public/workspace/jelly-tags/bsf/target/classes
 [copy] Copying 2 files to 
/home/gump/workspaces2/public/workspace/jelly-tags/bsf/target/test-classes

compile-tests:

internal-test:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jelly-tags/bsf/target/test-reports

test:

jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jelly-tags/bsf/target/commons-jelly-tags-bsf-06122004.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-bsf/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-bsf/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #418.

--
Apache Gump
http://gump.apache.org/ [Instance: brutus]

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



cvs commit: jakarta-commons/math/xdocs index.xml

2004-12-06 Thread psteitz
psteitz 2004/12/06 19:57:19

  Modified:math/xdocs index.xml
  Log:
  Prepare for 1.0 release.
  
  Revision  ChangesPath
  1.12  +10 -4 jakarta-commons/math/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-commons/math/xdocs/index.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- index.xml 8 Nov 2004 01:42:49 -   1.11
  +++ index.xml 7 Dec 2004 03:57:19 -   1.12
  @@ -86,9 +86,15 @@
 section name=Download Math
  subsection name=Releases
   p
  - Commons Math 1.0 will be released shortly to the Apache download 
mirrors.
  - A Release Candidate is available for download and testing 
  - a 
href=http://jakarta.apache.org/~psteitz/commons-math-1.0-RC2;here./a
  +  The latest release of Commons Math is available for download here:
  +  ul
  + li
  + a href=http://jakarta.apache.org/site/binindex.cgi#commons-math;
  + 1.0 Binary /a/li
  + li
  + a 
href=http://jakarta.apache.org/site/sourceindex.cgi#commons-math;
  + 1.0 Source /a/li
  +  /ul
   /p
  /subsection
  subsection name=Nightly Builds
  
  
  

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



DO NOT REPLY [Bug 31194] - [validator] Investigate removing arg position= attribute

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=31194.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=31194





--- Additional Comments From [EMAIL PROTECTED]  2004-12-07 05:39 ---
I've have removed the change I applied - re-verting back to version 1.35 of 
Field.

I was going to apply the new patch I attached, but I had a change of mind when 
I came to test it in my app. I think that for arguments for a specified 
validator, they should automatically number on from any 'defaults' defined.

Typically I find I have the following:

field propert=custNo depends=required,integer,intRange
  arg key=Customer Number resource=false/
  arg key=$(var:min} name=intRange resource=false/
  arg key=$(var:max} name=intRange resource=false/
/field

Where the arguments for a named validator are 'additional' to the default ones. 

So if someone wanted to 'override' the default they would have to do the 
following:

arg key=first/
arg key=second/
arg key=required.first name=required position=0/
arg key=required.second name=required/
arg key=mask.first name=mask position=0/
arg key=mask.second name=mask/

Opinions?

Niall

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



[GUMP@brutus]: Project commons-betwixt (in module jakarta-commons) failed

2004-12-06 Thread James Strachan
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-betwixt has an issue affecting its community integration.
This issue affects 12 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-betwixt :  Commons Betwixt Package
- commons-jelly-tags-betwixt :  This is a Jelly interface for Betwixt.
- commons-sql :  Basic Services Architecture
- db-torque :  Persistence Layer
- fulcrum-intake :  Services Framework
- fulcrum-security-adapter-turbine :  Services Framework
- jakarta-jetspeed :  Enterprise Information Portal
- jakarta-turbine-2 :  A servlet based framework.
- jakarta-turbine-3 :  A servlet based framework.
- jakarta-turbine-stratum :  Turbine Components
- maven-bootstrap :  Project Management Tools
- scarab :  Issue Tracking Built for the Ages


Full details are available at:

http://brutus.apache.org/gump/public/jakarta-commons/commons-betwixt/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-betwixt-06122004.jar] identifier set to project 
name
 -INFO- Failed with reason build failed
 -DEBUG- Extracted fallback artifacts from Gump Repository



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-commons/commons-betwixt/gump_work/build_jakarta-commons_commons-betwixt.html
Work Name: build_jakarta-commons_commons-betwixt (Type: Build)
Work ended in a state of : Failed
Elapsed: 6 secs
Command Line: java -Djava.awt.headless=true -Dbuild.clonevm=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-betwixt-06122004 
-Dresourcedir=/usr/local/gump/public/workspace/jakarta-commons/betwixt jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/betwixt]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/betwixt/target/classes:/usr/local/gump/public/workspace/jakarta-commons/betwixt/target/test-classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/src/java/org/apache/commons/betwixt/io/BeanCreateRule.java:507:
 warning: isPrimitiveType(java.lang.Class) in 
org.apache.commons.betwixt.digester.XMLIntrospectorHelper has been deprecated
[javac] if ( XMLIntrospectorHelper.isPrimitiveType( 
beanClass ) ) {
[javac]   ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/src/java/org/apache/commons/betwixt/io/BeanCreateRule.java:574:
 warning: body(java.lang.String) in org.apache.commons.digester.Rule has been 
deprecated
[javac] public void body(String text) throws Exception {
[javac] ^
[javac] 10 warnings
 [copy] Copying 12 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/target/classes
 [copy] Copying 32 files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/target/test-classes

compile-tests:
[javac] Compiling 224 source files to 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/target/test-classes
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-commons/betwixt/src/test/org/apache/commons/betwixt/TestBeanReader.java:384:
 warning: toGMTString() in java.util.Date has been deprecated
[javac] assertEquals(Incorrect date property, date.toGMTString(), 
readBean.getDateOfParty().toGMTString());  
[javac] 

[GUMP@brutus]: Project commons-jelly-tags-junit (in module jelly-tags) failed

2004-12-06 Thread Morgan Delagrange
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly-tags-junit has an issue affecting its community 
integration.
This issue affects 18 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly-tags-ant :  This is a Jelly interface for Ant.
- commons-jelly-tags-bean :  A tag library for mapping tags to beans using 
a similar appr...
- commons-jelly-tags-beanshell :  This is a Jelly interface for BeanShell.
- commons-jelly-tags-define :  This is a Jelly taglib for defining new tags 
and tag librari...
- commons-jelly-tags-dynabean :  This is a Jelly taglib for defining new 
tags and tag librari...
- commons-jelly-tags-fmt :  This is a set of Jelly i18n tags.
- commons-jelly-tags-html :  These Jelly tags can scrub commons errors in 
HTML syntax.
- commons-jelly-tags-jsl :  The Jelly Stylesheet Library (JSL)
- commons-jelly-tags-junit :  The Jelly Unit Test Tags
- commons-jelly-tags-log :  The Jelly Logging Tags
- commons-jelly-tags-sql :  This is a Jelly interface for SQL
- commons-jelly-tags-threads :  A library for processing Jelly scripts 
using multiple thread...
- commons-jelly-tags-util :  This is a set of Jelly utility tags.
- commons-jelly-tags-validate :  This is a Jelly interface for XML 
validation.
- commons-jelly-tags-xml :  ???
- commons-jelly-tags-xmlunit :  This is a Jelly interface for unit testing 
XML applications.
- commons-latka :  Functional Testing Suite
- maven :  Project Management Tools


Full details are available at:

http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-junit/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-tags-junit-06122004.jar] identifier set to 
project name
 -INFO- Failed with reason build failed
 -DEBUG- Extracted fallback artifacts from Gump Repository



The following work was performed:
http://brutus.apache.org/gump/public/jelly-tags/commons-jelly-tags-junit/gump_work/build_jelly-tags_commons-jelly-tags-junit.html
Work Name: build_jelly-tags_commons-jelly-tags-junit (Type: Build)
Work ended in a state of : Failed
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true -Dbuild.clonevm=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-jelly-tags-junit-06122004 jar 
[Working Directory: /usr/local/gump/public/workspace/jelly-tags/junit]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jelly-tags/junit/target/classes:/usr/local/gump/public/workspace/jelly-tags/junit/target/test-classes:/usr/local/gump/public/workspace/jakarta-commons/jelly/target/commons-jelly-06122004.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/dom4j-1.4/dom4j-full.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/standard.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtmlXni.jar:/usr/local/gump/packages/nekohtml-0.9.3/nekohtml.jar
-
Buildfile: build.xml

init:
[mkdir]