RE: Picking up the ball from Niclas (ugh!) on Velocity

2004-11-29 Thread Stephen McConnell


 -Original Message-
 From: Stefano Mazzocchi [mailto:[EMAIL PROTECTED]

 Gump is about establishing communication channels between development
 communities.

ROTFLOL




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



gump/maven plugins dependencies are broken

2004-10-20 Thread Stephen McConnell

Have been trying to sort out an issue concerning dependency logic
related to maven plugins during gump runs.

If we take a look at the Fulcrum MimeType Impl project it declares a
dependency (inside the maven project.xml) to the avalon-meta-plugin.
Normally maven will load the plugin at buildtime (which involves the
creation of a plugin classloader which in the case of the
avalon-meta-plugin involves loading about 6 or 7 other jar files that
are declared in the plugin's project.xml (embedded in the plugin jar
file).

However - something very strange is going on.

Maven appears to be loading the version of the plugin declared in the
project.xml and NOT the version of the plugin supplied by gump.  This
means that the wrong dependencies get pulled in - demonstrated by the
fact that maven is complaining about a missing dependency
excalibur-configuration.  Please note that excalibur-configuration is
*not* a dependency with the plugin supplied by gump - but it is a
dependency in the version of the plugin declared in the project.xml
file.

Here is the build result referencing the invalid missing
excalibur-configuration dependency.

http://marc.theaimsgroup.com/?l=turbine-devr=1b=200410w=4

My conclusion is that the gump builder for maven is expanding
dependencies based on the project.xml versioned plugin declaration via a
remote repository instead of expanding the project.xml of the latest
version of the plugin.  The thing here is that there is no information
available to the gump for maven builder to tell it where to find the
plugin's project.xml.  A possible solution here is to provide additional
information to the builder - possibly a gump.properties file that would
tell the gump builder where to find the definitive project.xml for the
plugin.

My currently feeling is that this issue is likely to block the majority
of builds in the Fulcrum repository.  

Any suggestions?

Stephen.



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



RE: Some progress on Fulcrum Component Builds!

2004-10-15 Thread Stephen McConnell


 -Original Message-
 From: Niclas Hedhman [mailto:[EMAIL PROTECTED]
 Sent: 15 October 2004 07:06
 To: Gump code and data
 Subject: Re: Some progress on Fulcrum Component Builds!
 
 On Friday 15 October 2004 07:45, Brett Porter wrote:
depend project=avalon-merlin-unit/ to depend
project=merlin-unit/
   
   :o)
  
   No, the project here refers to the name within Gump, but I think
that
 the
   following is needed;
  
   depend property=maven.jar.merlin-unit  project=avalon-merlin-
 unit/
  
   Brett, do you have any insight in this??  Steve?
 
  AFAIK property is not needed. The gump plugin just generates:
  depend project=${dependency} /
 
 Yes, but the Gump ID and the Maven ArtifactID must correspond, and
they
 don't
 in this case.

Can we just put a symlink in place that links merlin-unit to
avalon-merlin-unit?.

Steve.

 
 Niclas
 --
+--//---+
   / http://www.bali.ac/
  / http://niclas.hedhman.org /
 +--//---+
 
 
 -
 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 progress on Fulcrum Component Builds!

2004-10-15 Thread Stephen McConnell


 -Original Message-
 From: Eric Pugh [mailto:[EMAIL PROTECTED]
 Sent: 15 October 2004 14:39
 To: Gump code and data
 Subject: RE: Some progress on Fulcrum Component Builds!
 
 Great news!  Last question (well probably not...)
 
 In the latest jakarta-turbine-fulcrum, all the jars are now versioned:
 jar name=fulcrum-pool-api-1.0.2.jar/
 
 Is this due to some sort of issue with how the projects depend on each
 other?  

No. The issue is that gump is checking that the output produced by maven
corresponds to the output declared under the jar tag in gump
descriptor. If the build output does not correspond them gump will fail
the project.  In theory this should be handled via properties declared
by gump to maven but that does not appear to be working for the moment.
So the workaround is to add the explicit version to the gump descriptor.

 In the future, if I bump a version in my project.xml, should I
 also fix it here as well?

As things stand - yes.

Steve.


 
 Eric
 
  -Original Message-
  From: Niclas Hedhman [mailto:[EMAIL PROTECTED]
  Sent: Friday, October 15, 2004 12:37 PM
  To: Gump code and data
  Subject: Re: Some progress on Fulcrum Component Builds!
 
 
 
  Hi,
  Solution acquired.
  You keep merlin-unit in your Maven descriptors.
  I have created a new merlin-unit project in Gump, which
  inherits the Jar
  from avalon-merlin-unit.
 
  Everyone happy :o)
 
  Niclas
 
  On Friday 15 October 2004 19:29, Eric Pugh wrote:
   I see!   This makes sense!  Never thought about the impact on
  name changes
   on consumers of your code..  At least not in the way Gump is a
 consumer.
   So, because I use a specific version of merlin-unit, I am fine in
my
   project.  I can't change it to avalon-merlin-unit until the next
 version
   comes out.
  
   However, because of the name change, and Gump using the latest and
   greatest, my project doesn't know about the new version.
  
   So, in these types of situations, should I just somehow setup a
  package
   that I depend on, which would be the merlin-unit-3.3.0.jar
version?
  
   Alternatively, should Gump's record for avalon-merlin-unit be
 annotated
   with all the prior names, so that at the end of the run it
produces
   avalon-merlin-unit-@@DATE@@.jar as well as
merlin-unit-@@DATE@@.jar?
  
   Or lastly,
  
   Could we just make another project record and just copy
  everything it does
   and change the last line to this:
  
project name=avalon-merlin-unit
   license name=central/system/license/LICENSE.TXT/
   ant basedir=runtime/merlin/unit
 !-- for magic --
 property name=build.sysclasspath value=last/
 property name=magic.home reference=home
project=magic/
 property name=gump.signature value=@@DATE@@/
  
   SNIP/
   !-- end for --
   home nested=runtime/merlin/unit/target/deliverables/
   jar name=jars/merlin-unit-@@DATE@@.jar/
   nag to=[EMAIL PROTECTED]
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
  
  
   Eric
  
-Original Message-
From: Niclas Hedhman [mailto:[EMAIL PROTECTED]
Sent: Friday, October 15, 2004 12:15 PM
To: Gump code and data
Subject: Re: Some progress on Fulcrum Component Builds!
   
On Friday 15 October 2004 19:10, Eric Pugh wrote:
 I am a little confused..  Why is the behavior of
avalon-merlin-
 unit
 special/more difficult then any other dependency?
   
That is due to a name change.
   
merlin-unit is needed in your Maven descriptor since that has
been released
before.
avalon-merlin-unit is the new name, and that is the Gump
descriptor generated.
   
So, when you add depend project=avalon-merlin-unit/ you will
not get the
proper override for the Maven descriptor, and Maven will report
that
merlin-unit-x-x.jar can not be found.
   
Cheers
Niclas
--
   +--//---+
  / http://www.bali.ac/
 / http://niclas.hedhman.org /
+--//---+
   
   
   

 -
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]
 
  --
 +--//---+
/ http://www.bali.ac/
   / http://niclas.hedhman.org /
  +--//---+
 
 
 
-
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


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

RE: dependence on mysql jdbc driver bogus?

2004-10-14 Thread Stephen McConnell


 -Original Message-
 From: Niclas Hedhman [mailto:[EMAIL PROTECTED]
 Sent: 14 October 2004 05:44
 To: Gump code and data
 Subject: Re: dependence on mysql jdbc driver bogus?
 
 On Thursday 14 October 2004 11:37, Stefano Mazzocchi wrote:
  excalibur-datasource fails to build because it depends on mm-mysql
but
  doing a grep -r mysql . in that directory doesn't yield anything.
 
  I suspect it's a bogus dependency in their POM. Thoughts?
 
 Yes, and I have sent them a patch for its removal.

And is been applied.

Steve.




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



RE: BATCH: All dressed up, with nowhere to go...

2004-10-14 Thread Stephen McConnell


 -Original Message-
 From: Niclas Hedhman [mailto:[EMAIL PROTECTED]
 Sent: 14 October 2004 06:59
 To: Gump code and data
 Subject: Re: BATCH: All dressed up, with nowhere to go...
 
 On Thursday 14 October 2004 12:33, Niclas Hedhman wrote:
 
   I would suggest we mavenize xdoclet and remove jrefactory and
friends
   since they are clearly not enough friends of gump to live in the
house
   with him.
 
  I will start on it straight away...
 
 IIUIC, Xdoclet is not yet Mavenized. They use Ant as the build system,
and
 call upon Maven for the documentation generation.
 
 Instead, I suggest that we take the prettyprinter.jar from the xdoclet
CVS
 and
 make it into an installed package in Gump.
 
 WDYT?

Yep.

/Steve.

 Niclas
 --
+--//---+
   / http://www.bali.ac/
  / http://niclas.hedhman.org /
 +--//---+
 
 
 -
 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: jtidy

2004-10-13 Thread Stephen McConnell


 -Original Message-
 From: Brett Porter [mailto:[EMAIL PROTECTED]
 Sent: 13 October 2004 09:19
 To: Gump code and data
 Subject: Re: jtidy
 
   -- it is the last step before Cocoon, it seems. That, or somehow
we
   need to tackle this list below.
 
  Brett, if we built all those plugins from source, would we be able
to
  use the freshly compiled versions of them in Maven using jar
overrides
  or something?  Or would this involve changing the Maven
installation?
 
 I'll give a more explanatory answer, but the short answer is that it
 doesn't require changing the Maven installation, so this should be
 easy enough.
 
 plugins are a bit interesting in Maven 1.x.
 
 There are installation-wide plugins in $MAVEN_HOME/plugins
 There are user plugins in $MAVEN_HOME_LOCAL/plugins (usually
 $HOME/.maven/plugins)
 
 to gump, I imagine we never go near the second one, and only change
 the first one when we start building Maven from source.
 
 Then there are runtime only plugins - specified as dependencies (as in
 the case above), or built as part of a maven build using the reactor
 (see geronimo, I think).
 
 Since these ones are dependencies, they can be built using gump and
 handled as regular dependencies with jar overrides. They will not
 affect other projects, as they are not installed into either of the
 two locations above - just loaded into memory for the current maven
 run and forgotten once it stops.
 
  I'm very reluctant to make more parts of our build systems
installed.
 
 Not exactly what you mean by installed here. I agree that they
 shouldn't be installed in Maven for all builders to use.
 
 I think that they have to be treated as with other dependencies: use
 jar overrides. But whether you build them from source, or package them
 is up to you. I'd say building them is unlikely to be problematic
 (unless they have some obscure dependencies): plugin:plugin is a very
 simple goal.

Brett:

Any ideas what will happen when a project declares a dependency on a
artifact in both the project.xml and the gump project definition, and
the plugin itself is not built by maven?

This is the case with a plugin in the avalon repository that is build by
Magic and used in Maven under the Fulcrum project.

Steve.




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



RE: cvs commit: gump/project jakarta-turbine-3.xml jakarta-turbine-flux.xml jakarta-turbine-fulcrum.xml jakarta-turbine-site.xml logging-log4j-12.xml maven.xml scarab.xml xml-crimson.xml

2004-10-12 Thread Stephen McConnell


 -Original Message-
 From: Stefan Bodewig [mailto:[EMAIL PROTECTED]
 Sent: 12 October 2004 10:02
 To: [EMAIL PROTECTED]
 Subject: Re: cvs commit: gump/project jakarta-turbine-3.xml jakarta-
 turbine-flux.xml jakarta-turbine-fulcrum.xml jakarta-turbine-site.xml
 logging-log4j-12.xml maven.xml scarab.xml xml-crimson.xml
 
 On 12 Oct 2004, [EMAIL PROTECTED] wrote:
 
Fix a bunch of broken project names,
 
 AFAIU most of them have been autogenerated so we have a mismatch
 between the Gump plugin in Maven and Gump's view of the world, I'm
 afraid.
 
 There is no jakarta-turbine-fulcrum project (anymore?), 

There sure is.  They have a bunch of projects producing a swag of
components.

Steve.




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



RE: cvs commit: gump/project jakarta-turbine-3.xml jakarta-turbine-flux.xml jakarta-turbine-fulcrum.xml jakarta-turbine-site.xml logging-log4j-12.xml maven.xml scarab.xml xml-crimson.xml

2004-10-12 Thread Stephen McConnell


 -Original Message-
 From: Niclas Hedhman [mailto:[EMAIL PROTECTED]
 Sent: 12 October 2004 11:54
 To: Gump code and data
 Subject: Re: cvs commit: gump/project jakarta-turbine-3.xml jakarta-
 turbine-flux.xml jakarta-turbine-fulcrum.xml jakarta-turbine-site.xml
 logging-log4j-12.xml maven.xml scarab.xml xml-crimson.xml
 
 On Tuesday 12 October 2004 17:26, Stephen McConnell wrote:
   There is no jakarta-turbine-fulcrum project (anymore?),
 
  There sure is.  They have a bunch of projects producing a swag of
  components.
 
 Well, there is no jakarta-turbine-fulcrum project with that name.
Each
 component is its own project now.

Well, yes, but all under jakarta-turbine-fulcrum CVS.

/Steve.

 
 
 Niclas
 
 --
+--//---+
   / http://www.bali.ac/
  / http://niclas.hedhman.org /
 +--//---+
 
 
 -
 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: cvs commit: gump/project jakarta-turbine-3.xml jakarta-turbine-flux.xml jakarta-turbine-fulcrum.xml jakarta-turbine-site.xml logging-log4j-12.xml maven.xml scarab.xml xml-crimson.xml

2004-10-12 Thread Stephen McConnell


 -Original Message-
 From: Stefan Bodewig [mailto:[EMAIL PROTECTED]
 Sent: 12 October 2004 12:35
 To: [EMAIL PROTECTED]
 Subject: Re: cvs commit: gump/project jakarta-turbine-3.xml jakarta-
 turbine-flux.xml jakarta-turbine-fulcrum.xml jakarta-turbine-site.xml
 logging-log4j-12.xml maven.xml scarab.xml xml-crimson.xml
 
 On Tue, 12 Oct 2004, Stephen McConnell [EMAIL PROTECTED] wrote:
  -Original Message- From: Stefan Bodewig
 
  There is no jakarta-turbine-fulcrum project (anymore?),
 
  There sure is.  They have a bunch of projects producing a swag of
  components.
 
 There is a jakarta-turbine-fulcrum /module/, no /project/.  Nothing
 you could use in a single depend.

True - I'm just saying that there is a Jakarta Turbine Fulcrum project
within Apache.

/Steve.

 
 Stefan
 
 -
 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: cvs commit: gump/project jakarta-turbine-3.xml jakarta-turbine-flux.xml jakarta-turbine-fulcrum.xml jakarta-turbine-site.xml logging-log4j-12.xml maven.xml scarab.xml xml-crimson.xml

2004-10-12 Thread Stephen McConnell


 -Original Message-
 From: Stefan Bodewig [mailto:[EMAIL PROTECTED]
 Sent: 12 October 2004 12:47
 To: [EMAIL PROTECTED]
 Subject: Re: cvs commit: gump/project jakarta-turbine-3.xml jakarta-
 turbine-flux.xml jakarta-turbine-fulcrum.xml jakarta-turbine-site.xml
 logging-log4j-12.xml maven.xml scarab.xml xml-crimson.xml
 
 On Tue, 12 Oct 2004, Stephen McConnell [EMAIL PROTECTED] wrote:
 
  True - I'm just saying that there is a Jakarta Turbine Fulcrum
  project within Apache.
 
 Sure. 8-)
 
 When I said project, I was talking about the Gump project.  No
 offence intended in any way.

How can one be possibly offended when one is only here for the
entertainment?

/Steve.




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



RE: [vote] move the descriptors in our hands

2004-10-08 Thread Stephen McConnell


 -Original Message-
 From: Stefano Mazzocchi [mailto:[EMAIL PROTECTED]
 Sent: 08 October 2004 16:58
 To: Gump code and data
 Subject: Re: [vote] move the descriptors in our hands
 
 Stefan Bodewig wrote:
 
  On Thu, 7 Oct 2004, Adam R. B. Jack [EMAIL PROTECTED] wrote:
 
 
 ant-contrib comes and goes (I think) as it's gump descriptor fails
 to get read from SF.net's viewcvs.
 
 
  If it is of any help, go ahead and move the descriptors to Gump's
CVS
  (I'm with a customer and without my ssh keys right now).  I'm the
one
  maintaining the ant-contrib descriptors (ant-contrib and cpptasks)
  anyway.
 
 So, should we go ahead and move all the descriptors in our hands?

Please do not move the avalon-trunk.xml descriptor - it's automatically
generated and does not need any human tweaking.

Stephen.

 --
 Stefano.



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



RE: Avalon artifactIds (was Re: Excalibur Gump/Maven)

2004-10-08 Thread Stephen McConnell


 -Original Message-
 From: Adam R. B. Jack [mailto:[EMAIL PROTECTED]
 Sent: 08 October 2004 22:58
 To: Apache Gump
 Subject: Avalon artifactIds (was Re: Excalibur  Gump/Maven)
 
 Ok, we are now down to this:
 
  BTW: Anybody else to tell me what avalon-framework in Maven land is
ins
 Gump
  land? I think we have three dependencies, to it's one (a concern).
Which
  ought I pick? avalon-framework-api or avalon-framework-legacy or
  avalon-framework-impl? Do we have a Gump/Maven disconnect here
(due to
  changes in Avalon's artefacts) that needs to be updated in the
Excalibur
  project.xml?

avalon-framework-api 

  this project defines the client API (interfaces, exceptions, 
  immutable datatypes, etc. dealing with component lifecycle concerns).

avalon-framework-legacy

  contains some deprecated classes that have structural dependencies 
  on the avalon-logkit project. Is dependent on the framework api.

avalon-framework-impl 

  an implementation of the framework api.  Is dependent on the 
  framework api and framework-legacy.

As to what's needed by Excalibur Logging - you would need to ask someone
from the Excalibur project.

Stephen.


 regards
 
 Adam
 
 
 -
 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: [status] main issues

2004-10-07 Thread Stephen McConnell


 -Original Message-
 From: Stefano Mazzocchi [mailto:[EMAIL PROTECTED]


 But the *most* serious concern is that we seem to have no way to build

 with Maven and, due to excalibur, this is holding up basically 15 
 percent of our projects (including, yes, you guessed right, cocoon).

Fast track solution could be to put the last released jar files into an
excalibur-releases module with project ids matching the current set of
ids, and disable the existing excalibur descriptors pending resolution
of gump/maven equation (see below).

 The problem with maven is that I don't know how we can inject the 
 gump-generated dependency jars into maven.

Maven is fine on the injection stuff - basically it used a jar
override property that tells maven to use the jar file named in a
property value as the actual jar to bind against.  The problem is the
generation of the property files (by gump's maven builder).

 Does anybody have an idea?

Gump uses a namespace made of a project id and an optional output key.
Maven uses a combination of group and artifact name combination.  If we
take for example - the jar file produced by ant containing the junit
optional task is referenced in gump as:

   project: ant
   id: junit

In Maven the same jar file is normally referenced as:

   groupId: ant
   artifactId: ant-junit

When Gump's maven builder generates the proprieties file used during the
maven build, it uses the gump project model to establish the set of
dependencies and for each dump declared dependency (with full
inheritance of dependencies) create a property with the following name
and value:

maven.jar.junit=/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.
jar

Problem here is that:

  1. this property definition does not correspond to anything 
 declared in the target project's project.xml (because the 
 property is derived from the gump based dependencies - not
 the project's declared dependencies)

  2. the strategy for mapping of gump artifact keys to maven 
 artifact keys is basically broken in that duplicate property
 names can be generated (e.g. the property name generated for 
 the main JUnit project jar file is maven.jar.junit)

The solution to this problem is to drive the property file generation
off the project.xml file and NOT the gump dependency graph. This will
solve most issues because it will result in a much smaller set of
properties - but an underlying problem needs to be solved - namely the
declaration within a maven project of any mappings between maven
artifact names to gump project keys (e.g. ant/ant-junit -- ant:junit).
These mappings need to be used by the maven gump task when generating a
maven project descriptor.

Stephen.

 we can't expect excalibur to fix this on
 their own since this is obviously a gump issue, more than an excalibur

 issue.
 
 --
 Stefano.
 



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



RE: [status] main issues

2004-10-07 Thread Stephen McConnell


 -Original Message-
 From: Stefano Mazzocchi [mailto:[EMAIL PROTECTED]


 But the *most* serious concern is that we seem to have no way to build
 with Maven and, due to excalibur, this is holding up basically 15
 percent of our projects (including, yes, you guessed right, cocoon).

Fast track solution could be to put the last released jar files into an
excalibur-releases module with project ids matching the current set of
ids, and disable the existing excalibur descriptors pending resolution
of gump/maven equation (see below).

 The problem with maven is that I don't know how we can inject the
 gump-generated dependency jars into maven.

Maven is fine on the injection stuff - basically it used a jar
override property that tells maven to use the jar file named in a
property value as the actual jar to bind against.  The problem is the
generation of the property files (by gump's maven builder).

 Does anybody have an idea? 

Gump uses a namespace made of a project id and an optional output key.
Maven uses a combination of group and artifact name combination.  If we
take for example - the jar file produced by ant containing the junit
optional task is referenced in gump as:

   project: ant
   id: junit

In Maven the same jar file is normally referenced as:

   groupId: ant
   artifactId: ant-junit

When Gump's maven builder generates the proprieties file used during the
maven build, it uses the gump project model to establish the set of
dependencies and for each dump declared dependency (with full
inheritance of dependencies) create a property with the following name
and value:

maven.jar.junit=/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.
jar

Problem here is that:

  1. this property definition does not correspond to anything 
 declared in the target project's project.xml (because the 
 property is derived from the gump based dependencies - not
 the project's declared dependencies)

  2. the strategy for mapping of gump artifact keys to maven 
 artifact keys is basically broken in that duplicate property
 names can be generated (e.g. the property name generated for 
 the main JUnit project jar file is maven.jar.junit)

The solution to this problem is to drive the property file generation
off the project.xml file and NOT the gump dependency graph. This will
solve most issues because it will result in a much smaller set of
properties - but an underlying problem needs to be solved - namely the
declaration within a maven project of any mappings between maven
artifact names to gump project keys (e.g. ant/ant-junit -- ant:junit).
These mappings need to be used by the maven gump task when generating a
maven project descriptor.

Stephen.

 we can't expect excalibur to fix this on
 their own since this is obviously a gump issue, more than an excalibur
 issue.
 
 --
 Stefano.
 



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



RE: [GUMP@brutus]: excalibur/excalibur-instrument-spi failed

2004-10-02 Thread Stephen McConnell

All of the Excalibur projects are declared in a Gump definition which is
available to all Apache committers in the gump cvs module.  The file in
question is:

   /gump/project/excalibur.xml

Please note there this is a gump/maven issue that results in the
generation of inconsistent property files during the execution of the
build.  It seems that the gump builder for maven may be generating
properties that are inconsistent with the Gump naming conventions.  If
you get stuck in this area the best thing to do is to post the issues to
the [EMAIL PROTECTED] list.

Stephen.


 -Original Message-
 From: Leif Mortenson [mailto:[EMAIL PROTECTED]
 Sent: 02 October 2004 16:05
 To: Excalibur Developers List
 Subject: Re: [EMAIL PROTECTED]: excalibur/excalibur-instrument-spi failed
 
 Sorry for my ignorance, but where are the gump projects configured?
The
 instrument jar/project names all changed when I restructured
Instrument
 a while back.
 
 excalibur-instrument-api - excalibur-instrument-api
 excalibur-instrument-http - excalibur-instrument-mgr-http
 excalibur-instrument-impl - excalibur-instrument-mgr-impl
 excalibur-instrument-spi - excalibur-instrument-mgr-api
 excalibur-instrument-altrmi - X
 
 I'd take care of getting gump fixed as far as the instrument packages
if
 only
 I knew how
 
 Cheers,
 Leif
 
 Gump Integration Build wrote:
 
 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 folk at [EMAIL PROTECTED]
 
 Project excalibur-instrument-spi has an issue affecting its community
 integration.
 This issue affects 4 projects, and has been outstanding for 23L runs.
 Project State : 'Failed'
 The following are affected:
 - excalibur-instrument-http :  Repository of reusable components.
 - excalibur-instrument-impl :  Repository of reusable components.
 - excalibur-instrument-manager :  Repository of reusable
components.
 - excalibur-instrument-spi :  Repository of reusable components.
 
 
 Full details are available at:
 
 
http://brutus.apache.org/gump/public/excalibur/excalibur-instrument-
 spi/index.html
 
 That said, some snippets follow:
 
 
 The following annotations were provided:
  -DEBUG- Sole output [excalibur-instrument-spi-02102004.jar]
identifier
 set to project name
  -DEBUG- Dependency on junit exists, no need to add for property
 junit.jar.
  -DEBUG- Dependency on checkstyle exists, no need to add for property
 checkstyle.jar.
  -INFO- Made directory

[/usr/local/gump/public/workspace/excalibur/containerkit/instrument/mgr-
 api/target/classes]
  -INFO- Failed with reason build failed
  -INFO- Failed to extract fallback artifacts from Gump Repository
 
 
 The following work was performed:
 http://brutus.apache.org/gump/public/excalibur/excalibur-instrument-
 spi/gump_work/build_excalibur_excalibur-instrument-spi.html
 Work Name: build_excalibur_excalibur-instrument-spi (Type: Build)
 State: Failed
 Elapsed:
 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-
 xerces2/java/build/xml-apis.jar:/usr/local/gump/public/workspace/xml-

xalan/java/build/xalan-unbundled.jar:/usr/local/gump/public/workspace/xm
l-
 commons/java/external/build/xml-apis.jar org.apache.tools.ant.Main -
 Dgump.merge=/usr/local/gump/public/gump/work/merge.xml -
 Dbuild.sysclasspath=only -
 Djunit.jar=/usr/local/gump/public/workspace/dist/junit/junit.jar -
 Dsrc.exclude.pattern=**/package.html -

Dcheckstyle.jar=/usr/local/gump/public/workspace/checkstyle/target/dist/
ch
 eckstyle-02102004/checkstyle-02102004.jar -Dproject.version=02102004
-f
 gump-build.xml jar
 [Working Directory:
 /usr/local/gump/public/workspace/excalibur/instrument-manager/spi]
 CLASSPATH :

/usr/local/j2sdk1.4.2_04/lib/tools.jar:/usr/local/gump/public/workspace/
ex
 calibur/containerkit/instrument/mgr-

api/target/classes:/usr/local/gump/public/workspace/excalibur/containerk
it
 /instrument/mgr-api/target/test-
 classes:/usr/local/gump/public/workspace/avalon-

trunk/runtime/framework/api/target/deliverables/jars/avalon-framework-ap
i-
 02102004.jar:/usr/local/gump/public/workspace/avalon-
 tools/tools/magic/target/deliverables/jars/avalon-tools-magic-

02102004.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/
lo
 cal/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/lo
ca


RE: [rant] I hate this gump

2004-10-02 Thread Stephen McConnell


 -Original Message-
 From: Stefano Mazzocchi [mailto:[EMAIL PROTECTED]
 Sent: 02 October 2004 19:26
 To: Apache Gump
 Subject: [rant] I hate this gump
 
 This is a rant. I rant when I'm pissed, but I rant when I care.
 
 Cocoon received some 25 nags in a row, twice, in two days and it's
 likely to continue since I have no idea on how to fix the thing.
 
 I spent a few hours browsing around the gump html pages. I'm sorry,
they
 are not only uselessly full of information that nobody really cares
 about, but they are also misleading *very misleading*.
 
 Example:
 
 http://brutus.apache.org/gump/public/cocoon-2.1/index.html
 
 look at what it says:
 
   SUCCESS
 
 success at what? at finding problems? then it says overall project
 success 18%. WTF? what is the measure of success for gump, anything
 higher than zero?
 
 So, we clearly have a problem and I try to fix it. I take the 'cocoon'
 module because is the root of the dependencies (obviously *I* know
that,
 stupid gump doesn't tell me that, even if it knows)
 
 http://brutus.apache.org/gump/public/cocoon-2.1/cocoon/index.html
 
 no such project avalon-framework. What? It has been there
*FOREVER*...
 oh, yeah, it's the we love our users anthem we hear from avalon
every
 day [we are fixing that one in another area, but it should be fixed
soon]


There is this message on cocoon-dev:

  http://marc.theaimsgroup.com/?l=xml-cocoon-devm=109320288814185w=4

And this reply:

  http://marc.theaimsgroup.com/?l=xml-cocoon-devm=109322232009166w=4

Stephen.

 --
 Stefano.



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



RE: excalibur-thread-impl failure in Gump

2004-09-24 Thread Stephen McConnell


Bret/Adam:

Just a note on this dependency mapping question .. within the Magic
build system we doing something similar.  Dependencies declared in a
magic project definition typically match up with the name of an artifact
(id in maven).  In cases where Gump declares a scoped name (e.g. junit
relative to the ant-junit project, we include additional meta info
within the magic project definition (loosely equivalent to maven's
project.xml).

Here is an example of the definition of an external resource (close to a
maven dependency declaration).  Within magic the groupId is 'ant' and
the artifactId is 'ant-junit'.  We have additional metadata to handle
the mapping to a gump alias/id combination.  Using the alias/id we can
automatically resolve the gump resource and allocate this to the project
group/name key.

  resource
info
  groupant/group
  nameant-junit/name
  version1.6.2/version
  typejar/type
/info
gump
  classpath/
  aliasant/alias
  idjunit/id
/gump
  /resource

This works quite well and we don't have any naming conflicts.

Cheers, Steve.

p.s. Just another thought - the build.properties file generated by Gump
seems to be including all inherited project references irrespective of
the definition in gump.  For example, I recently removed all of the
inherit attributes from the gump descriptor for the threads project
(bringing it in line with the maven generated gump task output, but the
properties file still contains a much larger set of dependency mappings.

Would it be possible to simply restrict gump to generating only those
properties that are explicitly declared (i.e. no inherited properties)?

Cheers, Stephen.


 -Original Message-
 From: Brett Porter [mailto:[EMAIL PROTECTED]
 Sent: 24 September 2004 05:24
 To: Gump code and data
 Subject: Re: excalibur-thread-impl failure in Gump
 
 Ok, this time I got the reply-to right :)
 
  Unfortunately it has junit, the reason being was that Gump 'jar
ids'
 were
  within the scope of the project, so the 'ant' was implied. Since
Gump
 only
  has 'jar id' that is the only thing that Gump can pass to Maven.
Hence
 we
  need to make Gump 'jar ids' globally unique, and (for want of a
better)
  match Maven 'artifact ids'.
 
 Ok, I should explain Maven id's to clear this up a bit. They are
 composed of a group and an artifact ID. The group must be unique (this
 is easier to control than the whole id being unique), and the
 artifactId must be unique within the group (also easy for those
 maintaining the group to control). This guarantees the whole ID is
 unique.
 
 At the moment, groups are things like commons-collections, ant, and
 maven (see the root directory of http://www.ibiblio.org/maven/ for a
 list), but eventually we intend to move to a package structure, so the
 group would be org.apache.ant and such.
 
 The notation for an id is groupId:artifactId.
 
 Usually, artifactId is the same as the filename (files are built as
 artifactId-version.jar by default). This makes it much easier to
 remember and look up.
 
 For the above example, the ids should be junit:junit and ant:ant-junit
 respectively.
 
   JAR overrides do have a limitation in that they currently don't
really
   support the Maven id structure of group:artifact, which is planned
to
   be fixed for 1.1.
 
 So what I was saying here is that we never used to have a groupId -
 and the overrides you are using are a hangover of that. The property
 must match either the artifactId or id part of a dependency in
 project.xml.
 
 But if we have a project with ant:junit and junit:junit as
 dependencies - there'll be a problem as in both cases the old id is
 just junit.
 
  If you have time to explain in more detail I'd appreciate that, I'm
not
  quite following.
 
 Hope this helped.
 
  I agree. I was saying correct because I thought it used junit,
so I
 feel
  it ought ask for it (not have Maven transparently add it).
 
 In this way, Maven attempts to separate the build from the actual
 produced JAR (it isn't always successful, but we're working on that :)
 
 excaliber doesn't depend on junit in any way to use it AFAIK, so its
 not a dependency. It is a dependency of the excalbier unit tests
 though. Maven will specify that for you to avoid having to do it
 yourself only if you use the test plugin. In the same way, checkstyle
 is not a dependency of excaliber - but it is used if you run the maven
 checkstyle plugin report.
 Tests admittedly are a bit more fuzzy because you code and compile
 portions of your source against junit, but it should be treated the
 same.
 
  Or we build Maven from scratch using Gump'ed artifacts?
 
 I think this can happen now if you are game to try. Start by building
 from MAVEN-1_0-BRANCH and then later move to HEAD. If you want to
 build a Maven distribution using Maven 1.0, that's doable now. If you
 want to use ant 1.5, I'd need to modify the bootstrap to accept JAR
 overrides. Which do you prefer? Maybe start with Maven 

RE: excalibur-thread-impl failure in Gump

2004-09-22 Thread Stephen McConnell

 -Original Message-
 From: Brett Porter [mailto:[EMAIL PROTECTED]
 Sent: 22 September 2004 01:31
 To: Gump code and data
 Subject: Re: excalibur-thread-impl failure in Gump
 
 Short answer:
 It has a problem in build.properties. There are two maven.jar.junit
 properties, and the second points at ant-junit.jar, which I assume
 does not declare junit.framework.TestCase.

Ant-junit.jar is ant extensions to junit.  This would be introduced with
any dependency with a runtime inheritance property set (which is the
case of the thread-impl gump project definition).  I've just updated the
def to remove the runtime inheritance stuff so that should simplify
things a touch.

Steve.




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



RE: excalibur-thread-impl failure in Gump

2004-09-21 Thread Stephen McConnell


 -Original Message-
 From: Stefan Bodewig [mailto:[EMAIL PROTECTED]
 Sent: 21 September 2004 09:49
 To: [EMAIL PROTECTED]
 Subject: Re: excalibur-thread-impl failure in Gump
 
 On Mon, 20 Sep 2004, Stephen McConnell [EMAIL PROTECTED] wrote:
 
  Nope ... excalibur-thread-impl still failing.
  Time for a maven expert?
 
 Probably yes.  Maybe the junit plugin doesn't honour the jar overrides
 in project.properties?  Maybe it's a classloader issue and the fact
 that junit.jar is on the CLASSPATH is hurting Maven?

I took a look at excalibur-pool-impl which is almost identical (and has
testcases) and it's working ok.  I've just updated the project.xml to
follow it as closely as possible.  

I don't think it's a classpath thing because maven ignores the gump
supplied classpath anyway.  So it's down to something in the
project.xml, maven.xml or generated properties.

Anyway - let's give it another run to see if the last change actually
impacts anything.

Steve.


 
 Stefan
 
 -
 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: excalibur-thread-impl failure in Gump

2004-09-21 Thread Stephen McConnell


 -Original Message-
 From: Stefan Bodewig [mailto:[EMAIL PROTECTED]
 Sent: 21 September 2004 11:20
 To: [EMAIL PROTECTED]
 Subject: Re: excalibur-thread-impl failure in Gump
 
 On Tue, 21 Sep 2004, Stephen McConnell [EMAIL PROTECTED] wrote:
 
  I took a look at excalibur-pool-impl which is almost identical (and
  has testcases) and it's working ok.  I've just updated the
  project.xml to follow it as closely as possible.
 
 db-grafolia[1] works as well.  But it doesn't even list a dependency
 on JUnit in the Gump descriptor.

The listing in the gump descriptor is only going to effect the Gump
ordering - not the execution in Maven.  The junit target in maven fires
off a junit plugin which has the junit stuff in its classpath - or at
least is should.

The excalibur-thread-impl has just failed again. I'm kind of at the end
of ideas for possible solutions.

Steve.



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



RE: excalibur-thread-impl failure in Gump

2004-09-20 Thread Stephen McConnell


 -Original Message-
 From: Stefan Bodewig [mailto:[EMAIL PROTECTED]
 Sent: 20 September 2004 11:11
 To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: excalibur-thread-impl failure in Gump
 
 Hi,
 
 for some reason Maven doesn't seem to pick up JUnit, even though it is
 listed in the project.properties generated by Gump - and it doesn't
 complain about it missing either.
 
 Since I know next to nothing about Maven, the following observation
 may be completely insignificant, but ...
 
 In project.xml all dependencies have groupId and artefactId elements
 while the one for JUnit only has an id element (which the others have
 not).

Have already updated the project.xml to reflect the same convention.
What's interesting is that the project build locally without any issues.
Anyway - we'll see if this is the problem or not shortly!

Cheers, Steve.


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



cvs commit: gump/project excalibur.xml

2004-09-20 Thread mcconnell
mcconnell2004/09/20 02:56:02

  Modified:project  excalibur.xml
  Log:
  excalibur-instrument contains duplicate build strategies - fixed (removed ant build 
reference), also added version reference to sync. with maven.
  
  Revision  ChangesPath
  1.8   +3 -5  gump/project/excalibur.xml
  
  Index: excalibur.xml
  ===
  RCS file: /home/cvs/gump/project/excalibur.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- excalibur.xml 20 Sep 2004 09:14:29 -  1.7
  +++ excalibur.xml 20 Sep 2004 09:56:02 -  1.8
  @@ -633,16 +633,14 @@
   /maven
   packageorg.apache.avalon.excalibur.instrument/package
   
  +!--
   ant basedir=instrument target=jar buildfile=gump-build.xml
  -!-- optional dependencies --
   depend property=avalon-framework.jar project=avalon-framework-api/
   property name=checkstyle.jar project=checkstyle 
reference=jarpath/
  -
  -!-- test-time dependencies --
   depend property=junit.jar project=junit/
  -
   property name=project.version value=@@DATE@@/
   /ant
  +--
   
   !-- build-time dependencies --
   depend project=ant inherit=runtime/
  @@ -660,7 +658,7 @@
   work nested=containerkit/instrument/api/target/test-classes/
   
   home nested=containerkit/instrument/api//
  -jar name=target/excalibur-instrument-@@DATE@@.jar/
  +jar name=target/excalibur-instrument-1.2-dev.jar/
   
   junitreport nested=containerkit/instrument/api/target/docs/junitreports/
   
  
  
  

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



RE: cvs commit: gump/project jakarta-jmeter.xml

2004-09-20 Thread Stephen McConnell


 -Original Message-
 From: sebb [mailto:[EMAIL PROTECTED]
 Sent: 20 September 2004 12:49
 To: Gump code and data
 Subject: Re: cvs commit: gump/project jakarta-jmeter.xml
 
 On 20 Sep 2004 09:18:33 -, [EMAIL PROTECTED] [EMAIL PROTECTED]
 wrote:
  bodewig 2004/09/20 02:18:33
 
Modified:project  jakarta-jmeter.xml
Log:
remove broken project references
 
Revision  ChangesPath
1.106 +12 -10gump/project/jakarta-jmeter.xml
 
Index: jakarta-jmeter.xml
 
===
RCS file: /home/cvs/gump/project/jakarta-jmeter.xml,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- jakarta-jmeter.xml10 Sep 2004 14:01:01 -
1.105
+++ jakarta-jmeter.xml20 Sep 2004 09:18:32 -
1.106
@@ -85,9 +85,11 @@
 
 depend project=commons-collections/
 depend project=jtidy /
-depend project=excalibur-compatibility /
 depend project=excalibur-logger /
+!-- gone, no idea what to replace them with
+depend project=excalibur-compatibility /
 depend project=excalibur-i18n /
+--
 
 Perhaps there needs to be an archive version of such items in Gump.

These are the official released made by the Avalon project.

http://www.apache.org/dist/avalon/excalibur-i18n/jars/
http://www.apache.org/dist/avalon/excalibur-compatibility/jars/

Steve.


 
 -
 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: cvs commit: gump/project jakarta-jmeter.xml

2004-09-20 Thread Stephen McConnell


 -Original Message-
 From: Niclas Hedhman [mailto:[EMAIL PROTECTED]
 Sent: 20 September 2004 12:57
 To: Gump code and data
 Subject: Re: cvs commit: gump/project jakarta-jmeter.xml
 
 On Monday 20 September 2004 18:48, sebb wrote:
 
 +!-- gone, no idea what to replace them with
 +depend project=excalibur-compatibility /
  depend project=excalibur-i18n /
 
  Perhaps there needs to be an archive version of such items in Gump.
 
 By the way, I think I saw something about using an i18n package at
 CodeHaus or
 some other similar external source.


There is also the following (maintained) version of i18n.

http://www.apache.org/dist/avalon/avalon-util/jars/

You just need to switch package names to:

  org.apache.avalon.util.i18n

Steve.


 
 Niclas
 --
+--//---+
   / http://www.bali.ac/
  / http://niclas.hedhman.org /
 +--//---+
 
 
 -
 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: cvs commit: gump/project jakarta-jmeter.xml

2004-09-20 Thread Stephen McConnell


 -Original Message-
 From: Stefan Bodewig [mailto:[EMAIL PROTECTED]
 Sent: 20 September 2004 13:10
 To: [EMAIL PROTECTED]
 Subject: Re: cvs commit: gump/project jakarta-jmeter.xml
 
 On Mon, 20 Sep 2004, sebb [EMAIL PROTECTED] wrote:
  On 20 Sep 2004 09:18:33 -, [EMAIL PROTECTED]
  [EMAIL PROTECTED] wrote:
remove broken project references
-depend project=excalibur-compatibility /
 depend project=excalibur-logger /
+!-- gone, no idea what to replace them with
+depend project=excalibur-compatibility /
 depend project=excalibur-i18n /
+--
 
  Perhaps there needs to be an archive version of such items in Gump.
 
 Probably.
 
 Are the latest excalibur releases from Avalon the ones to look at?  I
 surely can't answer this, but you (as a client of those libs) should
 know.

All of the avalon stuff is good with full endorsed releases.

Steve.



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



is gump dead ?

2004-09-20 Thread Stephen McConnell

Current gump run seems to have been locked on entry 34 for the last 36
mins.

Steve.




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



RE: is gump dead ?

2004-09-20 Thread Stephen McConnell


 -Original Message-
 From: Adam R. B. Jack [mailto:[EMAIL PROTECTED]
 Sent: 20 September 2004 17:05
 To: [EMAIL PROTECTED]
 Subject: Re: is gump dead ?
 
  Current gump run seems to have been locked on entry 34 for the last
36
  mins.
 
 Timeout is 60 minutes ('cos some builds/tests used to take that long).
 That
 said, it seems to be chewing on project 38 (it only updates the page
every
 5
 projects) 'avalon-site'. Maybe the box is swamped w/ some JDK 1.5/mono
 stuff. I can't quite tell. I'll keep looking.

As long time Avalon committer I have no idea what avalon-site does and
strongly suspect that project definition can be killed (it certainly is
not maintained) - but I'll check into the detail and provide some
qualified feedback on that point (avalon's site build is actually
executed under a separate gump project definition maintained via a Magic
build).

Cheers, Steve.




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



cvs commit: gump/profile apache-avalon.xml gump.xml

2004-09-20 Thread mcconnell
mcconnell2004/09/20 08:31:30

  Modified:profile  apache-avalon.xml gump.xml
  Log:
  remove avalon-site
  
  Revision  ChangesPath
  1.13  +0 -1  gump/profile/apache-avalon.xml
  
  Index: apache-avalon.xml
  ===
  RCS file: /home/cvs/gump/profile/apache-avalon.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- apache-avalon.xml 23 Aug 2004 02:40:52 -  1.12
  +++ apache-avalon.xml 20 Sep 2004 15:31:29 -  1.13
  @@ -26,7 +26,6 @@
 !-- Apache.Avalon (CVN) --
 module href=project/avalon-sandbox.xml/
 module href=project/avalon-phoenix.xml/
  -  module href=project/avalon-site.xml/
   
   
   /profile
  
  
  
  1.403 +0 -1  gump/profile/gump.xml
  
  Index: gump.xml
  ===
  RCS file: /home/cvs/gump/profile/gump.xml,v
  retrieving revision 1.402
  retrieving revision 1.403
  diff -u -r1.402 -r1.403
  --- gump.xml  20 Sep 2004 12:42:39 -  1.402
  +++ gump.xml  20 Sep 2004 15:31:29 -  1.403
  @@ -34,7 +34,6 @@
 !-- module href=project/avalon-logkit.xml/ --
   
 module href=project/avalon-sandbox.xml/
  -  module href=project/avalon-site.xml/
 module href=project/avalon-phoenix.xml/
   
   !-- Apache.Cocoon --
  
  
  

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



RE: is gump dead ?

2004-09-20 Thread Stephen McConnell


 -Original Message-
 From: Stephen McConnell [mailto:[EMAIL PROTECTED]
 As long time Avalon committer I have no idea what avalon-site does and
 strongly suspect that project definition can be killed (it certainly
is
 not maintained) - but I'll check into the detail and provide some
 qualified feedback on that point (avalon's site build is actually
 executed under a separate gump project definition maintained via a
Magic
 build).


Took a look at avalon-site ... this is ancient cruft and is now not
longer.

Steve.




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



RE: excalibur-thread-impl failure in Gump

2004-09-20 Thread Stephen McConnell


 -Original Message-
 From: Stephen McConnell [mailto:[EMAIL PROTECTED]
 Sent: 20 September 2004 11:35
 To: 'Gump code and data'
 Cc: [EMAIL PROTECTED]
 Subject: RE: excalibur-thread-impl failure in Gump
 
 
 
  -Original Message-
  From: Stefan Bodewig [mailto:[EMAIL PROTECTED]
  Sent: 20 September 2004 11:11
  To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
  Subject: excalibur-thread-impl failure in Gump
 
  Hi,
 
  for some reason Maven doesn't seem to pick up JUnit, even though it
is
  listed in the project.properties generated by Gump - and it doesn't
  complain about it missing either.
 
  Since I know next to nothing about Maven, the following observation
  may be completely insignificant, but ...
 
  In project.xml all dependencies have groupId and artefactId elements
  while the one for JUnit only has an id element (which the others
have
  not).
 
 Have already updated the project.xml to reflect the same convention.
 What's interesting is that the project build locally without any
issues.
 Anyway - we'll see if this is the problem or not shortly!

Nope ... excalibur-thread-impl still failing.
Time for a maven expert?

Steve.



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



cvs commit: gump/project excalibur.xml

2004-09-18 Thread mcconnell
mcconnell2004/09/18 18:00:42

  Modified:project  excalibur.xml
  Log:
  Update to include hard coded versions in outputs.
  
  Revision  ChangesPath
  1.6   +9 -7  gump/project/excalibur.xml
  
  Index: excalibur.xml
  ===
  RCS file: /home/cvs/gump/project/excalibur.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- excalibur.xml 16 Sep 2004 16:43:56 -  1.5
  +++ excalibur.xml 19 Sep 2004 01:00:41 -  1.6
  @@ -1096,7 +1096,7 @@
   mkdir dir=components/pool/api/target/classes/
   
   home nested=components/pool/api/
  -jar name=target/excalibur-pool-api-@@DATE@@.jar/
  +jar name=target/excalibur-pool-api-2.0.0.jar/
   
   nag from=Gump Integration Build lt;[EMAIL PROTECTED]gt;
to=[EMAIL PROTECTED]/
  @@ -1136,7 +1136,7 @@
   dir mkdir=components/pool/impl/target/classes/
   
   home nested=components/pool/impl/
  -jar name=target/excalibur-pool-impl-@@DATE@@.jar/
  +jar name=target/excalibur-pool-impl-2.0.0.jar/
   
   nag from=Gump Integration Build lt;[EMAIL PROTECTED]gt;
to=[EMAIL PROTECTED]/
  @@ -1178,7 +1178,7 @@
   mkdir dir=components/pool/instrumented/target/classes/
   
   home nested=components/pool/instrumented/
  -jar name=target/excalibur-pool-instrumented-@@DATE@@.jar/
  +jar name=target/excalibur-pool-instrumented-2.0.jar/
   
   nag from=Gump Integration Build lt;[EMAIL PROTECTED]gt;
to=[EMAIL PROTECTED]/
  @@ -1290,8 +1290,9 @@
   mkdir dir=components/thread/api/target/classes/
   
   home nested=components/thread/api/
  -jar name=target/excalibur-thread-api-@@DATE@@.jar/
  -
  +
  +jar name=target/excalibur-thread-api-2.0.0.jar/ 
  +
   nag from=Gump Integration Build lt;[EMAIL PROTECTED]gt;
to=[EMAIL PROTECTED]/
   /project
  @@ -1333,7 +1334,8 @@
   mkdir dir=components/thread/impl/target/classes/
   
   home nested=components/thread/impl/
  -jar name=target/excalibur-thread-impl-@@DATE@@.jar/
  +
  +jar name=target/excalibur-thread-impl-2.0.0.jar/
   
   nag from=Gump Integration Build lt;[EMAIL PROTECTED]gt;
to=[EMAIL PROTECTED]/
  @@ -1379,7 +1381,7 @@
   mkdir dir=components/thread/instrumented/target/classes/
   
   home nested=components/thread/instrumented/
  -jar name=target/excalibur-thread-instrumented-@@DATE@@.jar/
  +jar name=target/excalibur-thread-instrumented-2.0.jar/
   
   nag from=Gump Integration Build lt;[EMAIL PROTECTED]gt;
to=[EMAIL PROTECTED]/
  
  
  

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



cvs commit: gump/project excalibur.xml

2004-09-15 Thread mcconnell
mcconnell2004/09/15 16:06:26

  Modified:project  excalibur.xml
  Log:
  fix first line and comments
  
  Revision  ChangesPath
  1.3   +15 -20gump/project/excalibur.xml
  
  Index: excalibur.xml
  ===
  RCS file: /home/cvs/gump/project/excalibur.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- excalibur.xml 14 Sep 2004 19:33:28 -  1.2
  +++ excalibur.xml 15 Sep 2004 23:06:26 -  1.3
  @@ -1,4 +1,4 @@
  -?xml version=1.0 ?
  +?xml version=1.0 ?
   !--
 Copyright 2001-2004 The Apache Software Foundation
   
  @@ -24,23 +24,24 @@
   
   svn repository=excalibur-svn dir=trunk/
   
  -!-- This project has been removed by the Excalibur community.
  -  project name=excalibur-compatibility
  -!-- this project is the merge of several packages which previously
  - existed seperately:
  + !-- 
  + This project has been removed by the Excalibur community.
  + The project was the merge of several packages which previously
  + existed seperately:
   
excalibur-cli
excalibur-collections
excalibur-concurrent
excalibur-io
  ---
  +  --
  +  !--
  +  project name=excalibur-compatibility
   packageorg.apache.avalon.excalibur/package
   
   ant basedir=compatibility target=jar buildfile=gump-build.xml
   property name=project.version value=@@DATE@@/
   /ant
   
  -!-- build-time dependencies --
   depend project=junit inherit=runtime/
   depend project=ant inherit=runtime/
   
  @@ -55,7 +56,7 @@
   junitreport nested=compatibility/target/docs/junitreports/
   
   /project
  ---
  +--
   
   project name=excalibur-component
   
  @@ -153,7 +154,8 @@
to=[EMAIL PROTECTED]/
   /project
   
  -!-- Project has been removed by the Excalibur community
  +!-- Project has been removed by the Excalibur community --
  +!--
   project name=excalibur-configuration
   packageorg.apache.excalibur.configuration/package
   
  @@ -164,27 +166,22 @@
   property name=do.checkstyle value=false/
   property name=skip.dependencies value=true/
   
  -!-- optional dependencies --
   property name=checkstyle.jar project=checkstyle 
reference=jarpath/
   property name=project.version value=@@DATE@@/
   /ant
   
  -!-- runtime dependencies --
   depend project=avalon-framework-api runtime=true/
   depend project=avalon-framework-legacy runtime=true/
   depend project=avalon-framework-impl runtime=true/
   depend property=isorelax.jar project=iso-relax runtime=true/
   depend project=jing runtime=true/
   
  -!-- test-time dependencies --
   depend property=junit.jar project=junit/
   
  -!-- build-time dependencies --
   depend project=ant inherit=runtime/
   depend project=xml-xerces/
   depend project=xml-xalan2/
   
  -!-- optional dependencies --
   option project=checkstyle inherit=runtime/
   
   work nested=configuration/target/classes/
  @@ -252,7 +249,7 @@
   packageorg.apache.excalibur.event/package
   !--
   ant basedir=event/api target=jar buildfile=gump-build.xml
  -!-- optional dependencies --
  +
   property name=checkstyle.jar project=checkstyle 
reference=jarpath/
   
   property name=package-version value=@@DATE@@/
  @@ -291,7 +288,7 @@
   packageorg.apache.excalibur.event/package
   !--
   ant basedir=event/impl target=jar buildfile=gump-build.xml
  -!-- optional dependencies --
  +
   property name=checkstyle.jar project=checkstyle 
reference=jarpath/
   
   property name=package-version value=@@DATE@@/
  @@ -607,13 +604,11 @@
   property name=project.version value=@@DATE@@/
   /ant
   
  -!-- build-time dependencies --
   depend project=ant inherit=runtime/
   depend project=xml-xerces/
   depend project=xml-xalan2/
   depend project=junit/
   
  -!-- optional dependencies --
   option project=checkstyle inherit=runtime/
   
   work nested=i18n/target/classes/
  @@ -758,9 +753,9 @@
   
   !--
   ant basedir=instrument-manager/http target=jar 
buildfile=gump-build.xml
  -!-- optional dependencies --
  +
   property name=checkstyle.jar project=checkstyle 
reference=jarpath/
  -!-- test-time dependencies --
  +
   property name=project.version value=@@DATE@@/
   property name=src.exclude.pattern value=**/package.html/
   /ant

cvs commit: gump/project excalibur.xml

2004-09-15 Thread mcconnell
mcconnell2004/09/15 16:14:39

  Modified:project  excalibur.xml
  Log:
  and a few more corrections
  
  Revision  ChangesPath
  1.4   +0 -5  gump/project/excalibur.xml
  
  Index: excalibur.xml
  ===
  RCS file: /home/cvs/gump/project/excalibur.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- excalibur.xml 15 Sep 2004 23:06:26 -  1.3
  +++ excalibur.xml 15 Sep 2004 23:14:39 -  1.4
  @@ -794,9 +794,7 @@
   mkdir dir=instrument-manager/altrmi/target/classes/
   
   ant basedir=instrument-manager/altrmi target=jar 
buildfile=gump-build.xml
  -!-- optional dependencies --
   property name=checkstyle.jar project=checkstyle 
reference=jarpath/
  -!-- test-time dependencies --
   property name=project.version value=@@DATE@@/
   property name=src.exclude.pattern value=**/package.html/
   /ant
  @@ -814,12 +812,10 @@
   depend project=incubator-altrmi id=server-api/
   depend project=incubator-altrmi id=server-impl/
   
  -!-- build-time dependencies --
   depend project=ant inherit=runtime/
   depend project=xml-xerces/
   depend project=xml-xalan2/
   
  -!-- optional dependencies --
   option project=checkstyle inherit=runtime/
   
   work nested=instrument-manager/altrmi/target/classes/
  @@ -848,7 +844,6 @@
   
   !--
   ant basedir=instrument-client target=jar buildfile=gump-build.xml
  -!-- optional dependencies --
   property name=checkstyle.jar project=checkstyle 
reference=jarpath/
   
   property name=project.version value=@@DATE@@/
  
  
  

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



RE: [GUMP@brutus]: cocoon-2.1/cocoon failed

2004-09-14 Thread Stephen McConnell


 -Original Message-
 From: Stefano Mazzocchi [mailto:[EMAIL PROTECTED]
 Sent: 15 September 2004 06:44
 To: Apache Gump
 Cc: [EMAIL PROTECTED]
 Subject: Re: [EMAIL PROTECTED]: cocoon-2.1/cocoon failed
 
 Gump wrote:
 
  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 folk at [EMAIL PROTECTED]
 
  Project cocoon has an issue affecting its community integration.
  This issue affects 1 projects.
  Project State : 'Failed'
  The following are affected:
  - cocoon :  Java XML Framework
 
 
  Full details are available at:
 
 
http://brutus.apache.org/gump/public/cocoon-2.1/cocoon/index.html
 
  That said, some snippets follow:
 
 
  The following annotations were provided:
   -DEBUG- Jar [cocoon.jar] identifier set to jar basename: [cocoon]
   -DEBUG- Jar [cocoon-tests.jar] identifier set to jar basename:
[cocoon-
 tests]
   -DEBUG- Jar [cocoon-deprecated.jar] identifier set to jar basename:
 [cocoon-deprecated]
   -ERROR- No such project [avalon-framework] for property.
   -ERROR- Cannot resolve jar/jarpath of *unknown* [avalon-framework]
   -ERROR- Unhandled Property: avalonapi.jar on: Ant on Project:cocoon
   -INFO- Failed with reason configuration failed
   -ERROR- Bad Dependency. Project: excalibur-compatibility unknown to
 *this* workspace
   -ERROR- Bad Dependency. Project: excalibur-instrument unknown to
*this*
 workspace
   -ERROR- Bad Dependency. Project: excalibur-instrument-manager
unknown
 to *this* workspace
   -ERROR- Bad Dependency. Project: excalibur-sourceresolve unknown to
 *this* workspace
   -ERROR- Bad Dependency. Project: excalibur-xmlutil unknown to
*this*
 workspace
   -ERROR- Bad Dependency. Project: excalibur-store unknown to *this*
 workspace
   -ERROR- Bad Dependency. Project: excalibur-pool unknown to *this*
 workspace
   -ERROR- Bad Dependency. Project: excalibur-component unknown to
*this*
 workspace
   -ERROR- Bad Dependency. Project: excalibur-logger unknown to *this*
 workspace
   -ERROR- Bad Dependency. Project: excalibur-event unknown to *this*
 workspace
   -ERROR- Bad Dependency. Project: excalibur-i18n unknown to *this*
 workspace
   -ERROR- Bad Dependency. Project: excalibur-testcase unknown to
*this*
 workspace
   -INFO- Failed to extract fallback artifacts from Gump Repository
 
 Gumpers, any suggestions?


Niclas has been updating the Gump Excalibur descriptors to bring this
content back to a 'live' state. In the process he moved the previously
disabled descriptors to new file with real content but the last run
didn't have the new file in the Gump workspace definition.  In theory
(if I'm reading the commits correctly) the majority of the above will
come back in the next run - however, there are some Excalibur projects
which are no longer maintained (e.g. the compatibility package) which
will require additional updates to Gump before all downstream issues are
cleared.

Steve.

 --
 Stefano, pretty excited to finally see cocoon coming up again in the
 gump radar after a year ;-)



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



cvs commit: gump/project avalon-trunk.xml

2004-09-04 Thread mcconnell
mcconnell2004/09/04 13:42:23

  Modified:project  avalon-trunk.xml
  Log:
  update to include latest avalon deps
  
  Revision  ChangesPath
  1.15  +91 -88gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- avalon-trunk.xml  27 Aug 2004 01:39:40 -  1.14
  +++ avalon-trunk.xml  4 Sep 2004 20:42:23 -   1.15
  @@ -456,6 +456,94 @@
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
   
  +  project name=avalon-central-site
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=central/site
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- external references --
  +  depend property=gump.resource.mailapi project=javamail
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.log4j project=logging-log4j-12
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.servletapi project=jakarta-servletapi-4
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.geronimo-spec-jms project=jms
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.commons-cli project=commons-cli
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.ant project=ant id=ant/
  +  depend property=gump.resource.junit project=junit/
  +  depend property=gump.resource.ant-junit project=ant id=junit/
  +  depend property=gump.resource.ant-nodeps project=ant id=nodeps/
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +!-- for gump --
  +depend project=avalon-runtimenoclasspath//depend
  +depend project=avalon-framework-apinoclasspath//depend
  +depend project=avalon-util-lifecyclenoclasspath//depend
  +depend project=avalon-util-extension-apinoclasspath//depend
  +depend project=avalon-merlin-apinoclasspath//depend
  +depend project=avalon-composition-apinoclasspath//depend
  +depend project=avalon-repository-apinoclasspath//depend
  +depend project=avalon-logging-apinoclasspath//depend
  +depend project=avalon-meta-apinoclasspath//depend
  +depend project=avalon-framework-implnoclasspath//depend
  +depend project=avalon-framework-legacynoclasspath//depend
  +depend project=avalon-logkitnoclasspath//depend
  +depend project=avalon-meta-spinoclasspath//depend
  +depend project=avalon-repository-spinoclasspath//depend
  +depend project=avalon-logging-spinoclasspath//depend
  +depend project=avalon-logging-implnoclasspath//depend
  +depend project=avalon-repository-mainnoclasspath//depend
  +depend project=avalon-repository-utilnoclasspath//depend
  +depend project=avalon-util-exceptionnoclasspath//depend
  +depend project=avalon-util-envnoclasspath//depend
  +depend project=avalon-util-i18nnoclasspath//depend
  +depend project=avalon-util-criterianoclasspath//depend
  +depend project=avalon-util-defaultsnoclasspath//depend
  +depend project=avalon-composition-spinoclasspath//depend
  +depend project=avalon-composition-implnoclasspath//depend
  +depend project=avalon-meta-implnoclasspath//depend
  +depend project=avalon-util-configurationnoclasspath//depend
  +depend project=avalon-util-extension-implnoclasspath//depend
  +depend project=avalon-test-dynamicsnoclasspath//depend
  +depend project=avalon-test-includesnoclasspath//depend
  +depend project=avalon-test-playgroundnoclasspath//depend
  +depend project=avalon-test-testanoclasspath//depend
  +depend project=avalon-test-testbnoclasspath//depend
  +depend project=avalon-test-testcnoclasspath//depend
  +depend project=avalon-test-testdnoclasspath//depend
  +depend project=avalon-test-testenoclasspath//depend
  +depend project=avalon-logging-logkit-implnoclasspath//depend
  +depend project=avalon-logging-logkit-apinoclasspath//depend
  +depend project=avalon-logging-log4jnoclasspath//depend
  +depend project=avalon-logging-logkit-syslognoclasspath//depend
  +depend project=avalon-logging-logkit-socketnoclasspath//depend
  +depend project=avalon-logging-logkit-datagramnoclasspath//depend
  +depend project=avalon-repository-implnoclasspath//depend
  +depend project=avalon-repository-clinoclasspath//depend
  +depend project=avalon-activation-implnoclasspath//depend
  +depend project=avalon-activation-apinoclasspath//depend
  +depend project=avalon-test-componentsnoclasspath//depend
  +depend project=avalon-merlin-implnoclasspath//depend
  +depend project=avalon-merlin

what's happening with notification?

2004-08-30 Thread Stephen McConnell


Gump notification has been off for a while now and I'm starting to see
failures on dependent projects that are not being fixed.  Can we bring
notification back or is there a deeper problem?

Cheers, Steve.




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



gump is supplying invalid property values

2004-08-27 Thread Stephen McConnell


Looking at the latest gump run results I'm seeing that even if dependent
build are not successful, gump is still attempting to build dependees
and in the process assigning and passing invalid property values to the
build target.  For example - avalon-http-impl dependency jasper-runtime
is not available, however gump is supplying jasper-runtime outputs as a
property  value and continuing with the build.

http://brutus.apache.org/gump/public/avalon-trunk/avalon-http-impl/gump_
work/build_avalon-trunk_avalon-http-impl.html


BUILD FAILED
/usr/local/gump/public/workspace/avalon-trunk/central/system/build/stand
ard.xml:11: Gump source resource override for resource
[artifact:jar:tomcat/jasper-runtime#27082004] references a non-existant
path
[/usr/local/gump/public/workspace/jakarta-tomcat-5/dist/common/lib/jaspe
r-runtime.jar].

Seems to me that Gump should *not* attempt to execute a project unless
it can assure that the values it is assigning are in fact valid.

Stephen.



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



RE: Jetty (JAAS and Plus)

2004-08-26 Thread Stephen McConnell


Thanks Adam .. I'll take it from here.

Cheers, Steve.



 -Original Message-
 From: Adam R. B. Jack [mailto:[EMAIL PROTECTED]
 Sent: 26 August 2004 16:52
 To: Gump General
 Subject: Jetty (JAAS and Plus)
 
 The packaged-jetty package on Gupm has been updated to 5.0RC2 (per
 request).
 
 I've added a qiuck packaged-jetty-all that has the following. Maybe
this
 will work for log4j-test until I get jetty working. It also has jaas.
 
 
  jar name=lib/org.mortbay.jetty.jar/
  jar name=lib/org.mortbay.jetty.plus.jar/
  jar name=lib/org.mortbay.jetty.jaas.jar/
 
 I have no more time, but the jars in there (should you wish to edit
the
 packkage descriptor are):
 
 [EMAIL PROTECTED]:/usr/local/gump/packages/jetty-5.0.RC2$ ls extra/lib/
 org.jboss.jetty.jar   org.mortbay.jetty-jdk1.2.jar
 org.mortbay.ftp.jar   org.mortbay.jetty.plus.jar
 org.mortbay.j2ee.jar  org.mortbay.jmx-jdk1.2.jar
 org.mortbay.jaas.jar  org.mortbay.loadbalancer.ja
 
 Gotta run...
 
 regards
 
 Adam
 --
 Have you Gump'ed your code today?
 http://gump.apache.org
 
 -
 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]



cvs commit: gump/project packaged-jetty.xml

2004-08-26 Thread mcconnell
mcconnell2004/08/26 08:22:27

  Modified:project  packaged-jetty.xml
  Log:
  add separate jetty jass project
  
  Revision  ChangesPath
  1.4   +6 -0  gump/project/packaged-jetty.xml
  
  Index: packaged-jetty.xml
  ===
  RCS file: /home/cvs/gump/project/packaged-jetty.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- packaged-jetty.xml26 Aug 2004 14:50:11 -  1.3
  +++ packaged-jetty.xml26 Aug 2004 15:22:26 -  1.4
  @@ -37,4 +37,10 @@
   license name=LICENSE.html/
 /project
   
  +  project name=packaged-jetty-jaas
  +packageorg.mortbay.jetty/package
  +jar name=lib/org.mortbay.jetty.jaas.jar/
  +license name=LICENSE.html/
  +  /project
  +
   /module
  
  
  

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



cvs commit: gump/project avalon-trunk.xml

2004-08-26 Thread mcconnell
mcconnell2004/08/26 08:28:18

  Modified:project  avalon-trunk.xml
  Log:
  add references to jetty jaas libraries
  
  Revision  ChangesPath
  1.11  +10 -10gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- avalon-trunk.xml  26 Aug 2004 05:18:29 -  1.10
  +++ avalon-trunk.xml  26 Aug 2004 15:28:17 -  1.11
  @@ -416,7 +416,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
  +  depend property=gump.resource.org.mortbay.jaas 
project=packaged-jetty-jaas
   noclasspath/
 /depend
 depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
  @@ -479,7 +479,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
  +  depend property=gump.resource.org.mortbay.jaas 
project=packaged-jetty-jaas
   noclasspath/
 /depend
 depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
  @@ -1260,7 +1260,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
  +  depend property=gump.resource.org.mortbay.jaas 
project=packaged-jetty-jaas
   noclasspath/
 /depend
 depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
  @@ -1398,7 +1398,7 @@
 depend property=gump.resource.org.mortbay.jetty project=packaged-jetty
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
  +  depend property=gump.resource.org.mortbay.jaas 
project=packaged-jetty-jaas
   noclasspath/
 /depend
 depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
  @@ -1581,7 +1581,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
  +  depend property=gump.resource.org.mortbay.jaas 
project=packaged-jetty-jaas
   noclasspath/
 /depend
 depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
  @@ -1797,7 +1797,7 @@
 depend property=gump.resource.commons-pool project=commons-pool
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
  +  depend property=gump.resource.org.mortbay.jaas 
project=packaged-jetty-jaas
   noclasspath/
 /depend
 depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
  @@ -2109,7 +2109,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
  +  depend property=gump.resource.org.mortbay.jaas 
project=packaged-jetty-jaas
   noclasspath/
 /depend
 depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
  @@ -3227,7 +3227,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
  +  depend property=gump.resource.org.mortbay.jaas 
project=packaged-jetty-jaas
   noclasspath/
 /depend
 depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
  @@ -4096,7 +4096,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
  +  depend property=gump.resource.org.mortbay.jaas 
project=packaged-jetty-jaas
   noclasspath/
 /depend
 depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
  @@ -4302,7 +4302,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
  +  depend property=gump.resource.org.mortbay.jaas 
project=packaged-jetty-jaas
   noclasspath/
 /depend
 depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging

RE: more on gump

2004-08-26 Thread Stephen McConnell

Thanks to some help from Adam we we're getting real close now:

  Successful builds:  128
  Build failures:   1
  Prerequisite failures:8

The single build failure is related to the avalon-http-examples project
due to a FileNotFoundException:
avalon/http/blocks/avalon-http-servlet-26082004.block.  Looking at the
avalon-http-servlet build I can see that the servlet block has been
created and installed - so I'm a little confused (again) but I'll dig
around and see what comes up.

Stephen.





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



cvs commit: gump/project avalon-trunk.xml

2004-08-26 Thread mcconnell
mcconnell2004/08/26 16:10:44

  Modified:project  avalon-trunk.xml
  Log:
  updated the gump task to generate deps for non-jar files
  
  Revision  ChangesPath
  1.12  +23 -0 gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- avalon-trunk.xml  26 Aug 2004 15:28:17 -  1.11
  +++ avalon-trunk.xml  26 Aug 2004 23:10:44 -  1.12
  @@ -174,12 +174,14 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  +depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  +depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-test-componentsnoclasspath//depend
  @@ -1182,12 +1184,14 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  +depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  +depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-activation-implnoclasspath//depend
  @@ -2213,12 +2217,14 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  +depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  +depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-activation-implnoclasspath//depend
  @@ -2337,12 +2343,14 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  +depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  +depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-activation-implnoclasspath//depend
  @@ -2894,12 +2902,14 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  +depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  +depend project=avalon

cvs commit: gump/project avalon-trunk.xml

2004-08-26 Thread mcconnell
mcconnell2004/08/26 16:25:24

  Modified:project  avalon-trunk.xml
  Log:
  updated the gump task to generate deps for non-jar files
  
  Revision  ChangesPath
  1.13  +0 -21 gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- avalon-trunk.xml  26 Aug 2004 23:10:44 -  1.12
  +++ avalon-trunk.xml  26 Aug 2004 23:25:24 -  1.13
  @@ -174,14 +174,12 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-test-componentsnoclasspath//depend
  @@ -1184,14 +1182,12 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-activation-implnoclasspath//depend
  @@ -2217,14 +2213,12 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-activation-implnoclasspath//depend
  @@ -2343,14 +2337,12 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-activation-implnoclasspath//depend
  @@ -2902,14 +2894,12 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon

cvs commit: gump/project avalon-trunk.xml

2004-08-26 Thread mcconnell
mcconnell2004/08/26 18:39:40

  Modified:project  avalon-trunk.xml
  Log:
  housekeeping
  
  Revision  ChangesPath
  1.14  +4 -3  gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- avalon-trunk.xml  26 Aug 2004 23:25:24 -  1.13
  +++ avalon-trunk.xml  27 Aug 2004 01:39:40 -  1.14
  @@ -4115,21 +4115,22 @@
   /ant
   depend project=magic runtime=true inherit=runtime/ 
   !-- for gump --
  -depend project=avalon-http-servletnoclasspath//depend
  +depend project=avalon-http-servernoclasspath//depend
  +depend project=avalon-framework-apinoclasspath//depend
  +depend project=avalon-http-apinoclasspath//depend
   depend project=avalon-http-implnoclasspath//depend
   depend project=avalon-http-spinoclasspath//depend
  -depend project=avalon-http-apinoclasspath//depend
   depend project=avalon-composition-apinoclasspath//depend
   depend project=avalon-util-extension-apinoclasspath//depend
   depend project=avalon-repository-apinoclasspath//depend
   depend project=avalon-logging-apinoclasspath//depend
   depend project=avalon-meta-apinoclasspath//depend
  -depend project=avalon-framework-apinoclasspath//depend
   depend project=avalon-framework-implnoclasspath//depend
   depend project=avalon-framework-legacynoclasspath//depend
   depend project=avalon-logkitnoclasspath//depend
   depend project=avalon-http-utilnoclasspath//depend
   depend project=avalon-util-configurationnoclasspath//depend
  +depend project=avalon-http-servletnoclasspath//depend
   !-- end for --
   home nested=planet/facilities/http/blocks/examples/target/deliverables/
   jar name=jars/avalon-http-examples-@@DATE@@.jar/
  
  
  

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



RE: svn commit: rev 36821 - in gump/live

2004-08-25 Thread Stephen McConnell


 Gump is currently on 496 of 677. Finger's crossed..

Adam:

The Gump runs seem to be completing now following your patches this
morning. However there does seem to be a problem related to
notification.  The Avalon dev list is kind of flooded with repeated
notification messages (mostly notifying success which is nice - but it's
a flood all the same).

Cheers, Steve.




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



RE: request for jetty updates

2004-08-25 Thread Stephen McConnell


Any chance of getting Gump updated to include:

http://sourceforge.net/project/showfiles.php?group_id=7322package_id=68
203release_id=229559


 Could we update Gump's 'packaged-jetty' content to this version, and
 secondly, can we please also include the org.mortbay.jaas.jar file as
 this is needed to build the Avalon http facility.  This file is
included
 in the download distribution under the /extra/lib directory.


With the org.mortbay.jaas.jar in place we will be able to close the
following build failure:

http://brutus.apache.org/gump/public/avalon-trunk/avalon-http-impl/index
.html


Cheers, Steve.




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



RE: more on gump

2004-08-25 Thread Stephen McConnell


 -Original Message-
 From: Stephen McConnell [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2004 05:08
 To: 'Avalon Developers List'
 Cc: [EMAIL PROTECTED]
 Subject: RE: more on gump
 
 
 Current status of the Avalon Gump builds:
 
   Successful builds:   98
   Build failures:   9
   Prerequisite failures:   30


Thinks are getting closer to total success:

  Successful builds:  116
  Build failures:   3 
  Prerequisite failures:   18

Of the three failures, one is related to the site generation which for
the moment I simply have not figured out.  The second is an issue
related to the version of JMX (using MX4J libs) - Gump is linked to
version 2 and Avalon JMX facilities are linked to 1.1 (Cameron is
digging into this as we speak - i.e. expect synchronization shortly).
The third item is the http implementation which requires the addition of
the org.mortbay.jaas.jar file by the Gump team (Gump guys .. we need
your help on this one).

Cheers, Steve.



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



cvs commit: gump/project avalon-trunk.xml

2004-08-25 Thread mcconnell
mcconnell2004/08/25 22:18:29

  Modified:project  avalon-trunk.xml
  Log:
  updates to sync jmx facilty with 2.0.1
  
  Revision  ChangesPath
  1.10  +54 -33gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- avalon-trunk.xml  24 Aug 2004 18:43:04 -  1.9
  +++ avalon-trunk.xml  26 Aug 2004 05:18:29 -  1.10
  @@ -538,9 +538,6 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  -noclasspath/
  -  /depend
 depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
  @@ -1785,9 +1782,6 @@
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  -noclasspath/
  -  /depend
 depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
  @@ -1827,6 +1821,18 @@
 depend property=gump.resource.commons-beanutils 
project=commons-beanutils-core
   noclasspath/
 /depend
  +  depend property=gump.resource.mx4j-impl project=mx4j id=mx4j-impl
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.mx4j-rjmx project=mx4j id=mx4j-rjmx
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.mx4j-rimpl project=mx4j id=mx4j-rimpl
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  +noclasspath/
  +  /depend
 !-- end for --
   /ant
   depend project=magic runtime=true inherit=runtime/ 
  @@ -3016,9 +3022,6 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  -noclasspath/
  -  /depend
 depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
  @@ -3103,10 +3106,19 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  +  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
  +  depend property=gump.resource.mx4j-impl project=mx4j id=mx4j-impl
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.mx4j-rjmx project=mx4j id=mx4j-rjmx
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.mx4j-rimpl project=mx4j id=mx4j-rimpl
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
   noclasspath/
 /depend
 !-- end for --
  @@ -3451,10 +3463,19 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  +  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
  +  depend property=gump.resource.mx4j-impl project=mx4j id=mx4j-impl
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.mx4j-rjmx project=mx4j id=mx4j-rjmx
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.mx4j-rimpl project=mx4j id=mx4j-rimpl
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
   noclasspath/
 /depend
 !-- end for --
  @@ -5237,6 +5258,26 @@
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
   
  +  project name=avalon-tutorial-context-alias
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=planet/tutorials/context/alias
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +!-- for gump --
  +depend project=avalon-framework-apinoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
  +!-- end for --
  +home nested=planet/tutorials/context/alias/target

RE: more on gump

2004-08-25 Thread Stephen McConnell


 -Original Message-
 From: Stephen McConnell [mailto:[EMAIL PROTECTED]
 Sent: 26 August 2004 07:10
 To: 'Avalon Developers List'
 Cc: [EMAIL PROTECTED]
 Subject: RE: more on gump
 
 
 
  -Original Message-
  From: Stephen McConnell [mailto:[EMAIL PROTECTED]
  Sent: 24 August 2004 05:08
  To: 'Avalon Developers List'
  Cc: [EMAIL PROTECTED]
  Subject: RE: more on gump
 
 
  Current status of the Avalon Gump builds:
 
Successful builds:   98
Build failures:   9
Prerequisite failures:   30
 
 
 Thinks are getting closer to total success:
 
   Successful builds:  116
   Build failures:   3
   Prerequisite failures:   18
 
 Of the three failures, one is related to the site generation which for
 the moment I simply have not figured out.  The second is an issue
 related to the version of JMX (using MX4J libs) - Gump is linked to
 version 2 and Avalon JMX facilities are linked to 1.1 (Cameron is
 digging into this as we speak - i.e. expect synchronization shortly).

Cameron has just committed updates to jmx that should in principal
resolve the current jmx/mx4j builds (and resolve at least 2 of out our
18 prerequisite failures).  We should have confirmation from Gump in
around two or three hours.

Cheers, Stephen.


 The third item is the http implementation which requires the addition
of
 the org.mortbay.jaas.jar file by the Gump team (Gump guys .. we need
 your help on this one).
 
 Cheers, Steve.
 
 
 
 -
 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]



cvs commit: gump/project avalon-trunk.xml

2004-08-24 Thread mcconnell
mcconnell2004/08/24 11:43:05

  Modified:project  avalon-trunk.xml
  Log:
  this should fix the jmx-util problem
  
  Revision  ChangesPath
  1.9   +13 -7 gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- avalon-trunk.xml  24 Aug 2004 00:09:00 -  1.8
  +++ avalon-trunk.xml  24 Aug 2004 18:43:04 -  1.9
  @@ -538,6 +538,9 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  +noclasspath/
  +  /depend
 depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
  @@ -1782,6 +1785,9 @@
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
   noclasspath/
 /depend
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  +noclasspath/
  +  /depend
 depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
  @@ -1821,9 +1827,6 @@
 depend property=gump.resource.commons-beanutils 
project=commons-beanutils-core
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  -noclasspath/
  -  /depend
 !-- end for --
   /ant
   depend project=magic runtime=true inherit=runtime/ 
  @@ -3013,6 +3016,9 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  +noclasspath/
  +  /depend
 depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
  @@ -3097,10 +3103,10 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  +  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
 !-- end for --
  @@ -3445,10 +3451,10 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
  +  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
 !-- end for --
  
  
  

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



RE: [http] sorting deps

2004-08-24 Thread Stephen McConnell


 -Original Message-
 From: Adam R. B. Jack [mailto:[EMAIL PROTECTED]
 This of any help?
 
http://neukadye.chalko.com/archive/13.html


Thanks - yes, didn't think about that!

Cheers, Steve.



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



RE: svn commit: rev 36821 - in gump/live

2004-08-24 Thread Stephen McConnell


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2004 21:26
 To: [EMAIL PROTECTED]
 Subject: svn commit: rev 36821 - in gump/live: . bin cron python
 python/gump python/gump/admin python/gump/build python/gump/core
 python/gump/document/text python/gump/document/xdocs
 python/gump/integration python/gump/java python/gump/model
 python/gump/process py

Adam:

It seems like this commit may have broken something somewhere.  The last
Gump run blocked somewhere after entry 269 in the build cycle following
which Gump reset itself and started a fresh run.  As I'm typing we are
back at 269 again and Gump has failed to generate any new info for the
past 18 minutes so I figure its dead.

Steve.




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



RE: svn commit: rev 36821 - in gump/live

2004-08-24 Thread Stephen McConnell


  It seems like this commit may have broken something somewhere.
 
 Thanks for the heads-up, I'll look.


Gump is currently on its third cycle - 
  spinning on whatever is following 269.

Steve.





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



RE: svn commit: rev 36821 - in gump/live

2004-08-24 Thread Stephen McConnell


 -Original Message-
 From: Adam R. B. Jack [mailto:[EMAIL PROTECTED]
 Sent: 25 August 2004 06:41
 To: Gump code and data
 Subject: RE: svn commit: rev 36821 - in gump/live
 
  Gump is currently on its third cycle -
   spinning on whatever is following 269.
 
 It was a project that had previously built, that failed, that Gump was
 attempting to locate artifacts for (in it's repository).
 
 Gump is currently on 496 of 677. Finger's crossed..

This is more exciting than CNN!

Steve.




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



cvs commit: gump/project avalon-trunk.xml

2004-08-23 Thread mcconnell
mcconnell2004/08/23 08:59:58

  Modified:project  avalon-trunk.xml
  Log:
  remove output reference on repository-test by declaring type as null
  
  Revision  ChangesPath
  1.2   +0 -12 gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- avalon-trunk.xml  23 Aug 2004 02:40:52 -  1.1
  +++ avalon-trunk.xml  23 Aug 2004 15:59:58 -  1.2
  @@ -181,7 +181,6 @@
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-test-componentsnoclasspath//depend
  @@ -671,7 +670,6 @@
   depend project=avalon-repository-clinoclasspath//depend
   !-- end for --
   home nested=runtime/repository/test/target/deliverables/
  -jar name=jars/avalon-repository-test-@@DATE@@.jar/
   nag to=[EMAIL PROTECTED]
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
  @@ -1189,7 +1187,6 @@
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-activation-implnoclasspath//depend
  @@ -2213,7 +2210,6 @@
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-activation-implnoclasspath//depend
  @@ -2339,7 +2335,6 @@
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-activation-implnoclasspath//depend
  @@ -2898,7 +2893,6 @@
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   !-- end for --
  @@ -2977,7 +2971,6 @@
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   !-- end for --
  @@ -3912,7 +3905,6 @@
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-test-componentsnoclasspath//depend
   depend project=avalon-merlin-implnoclasspath//depend
  @@ -4090,7 +4082,6 @@
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  -depend project=avalon-repository-testnoclasspath//depend
   depend project=avalon-repository-implnoclasspath//depend
   depend project=avalon-repository-clinoclasspath//depend
   depend project=avalon-activation-implnoclasspath//depend
  @@ -4239,7 +4230,6 @@
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend

cvs commit: gump/project avalon-trunk.xml

2004-08-23 Thread mcconnell
mcconnell2004/08/23 12:55:32

  Modified:project  avalon-trunk.xml
  Log:
  reflect changes to cornerstone deps
  
  Revision  ChangesPath
  1.4   +6 -0  gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- avalon-trunk.xml  23 Aug 2004 16:53:45 -  1.3
  +++ avalon-trunk.xml  23 Aug 2004 19:55:32 -  1.4
  @@ -272,6 +272,9 @@
 depend property=gump.resource.concurrent project=concurrent
   noclasspath/
 /depend
  +  depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
  +noclasspath/
  +  /depend
 !-- end for --
   /ant
   depend project=magic runtime=true inherit=runtime/ 
  @@ -5119,6 +5122,9 @@
   noclasspath/
 /depend
 depend property=gump.resource.concurrent project=concurrent
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.commons-logging project=commons-logging 
id=commons-logging
   noclasspath/
 /depend
 !-- end for --
  
  
  

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



cvs commit: gump/project avalon-trunk.xml

2004-08-23 Thread mcconnell
mcconnell2004/08/23 14:09:27

  Modified:project  avalon-trunk.xml
  Log:
  add test deps
  
  Revision  ChangesPath
  1.5   +19 -0 gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- avalon-trunk.xml  23 Aug 2004 19:55:32 -  1.4
  +++ avalon-trunk.xml  23 Aug 2004 21:09:27 -  1.5
  @@ -4562,11 +4562,30 @@
 property name=build.sysclasspath value=last/ 
 property name=magic.home reference=home project=magic/
 property name=gump.signature value=@@DATE@@/
  +  !-- external references --
  +  depend property=gump.resource.mailapi project=javamail
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.log4j project=logging-log4j-12
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.servletapi project=jakarta-servletapi-4
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.geronimo-spec-jms project=jms
  +noclasspath/
  +  /depend
 !-- end for --
   /ant
   depend project=magic runtime=true inherit=runtime/ 
   !-- for gump --
  +depend project=avalon-test-testanoclasspath//depend
   depend project=avalon-framework-apinoclasspath//depend
  +depend project=avalon-util-configurationnoclasspath//depend
  +depend project=avalon-framework-implnoclasspath//depend
  +depend project=avalon-framework-legacynoclasspath//depend
  +depend project=avalon-logkitnoclasspath//depend
  +depend project=avalon-test-testbnoclasspath//depend
   depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=runtime/test/testc/target/deliverables/
  
  
  

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



request for jetty updates

2004-08-23 Thread Stephen McConnell

Currently the gump 'packaged-jetty' project contains Jetty-5.0.beta2
from 11-02-04.  

The latest build from Mortbay is jetty-5.0.RC2.

http://sourceforge.net/project/showfiles.php?group_id=7322package_id=68
203

Could we update gump's 'packaged-jetty' content to this version, and
secondly, can we please also include the org.mortbay.jaas.jar file as
this is needed to build the Avalon http facility.  This file is included
in the download distribution under the /extra/lib directory.

Cheers, Steve.




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



[http] sorting deps

2004-08-23 Thread Stephen McConnell

The gump build for the http impl has a few problems:

http://brutus.apache.org/gump/public/avalon-trunk/avalon-http-impl/index
.html


1. Error No such project [org.mortbay.jaas] for property. 

   Have already sent an email to the gump list to request
   The addition of org.mortbay.jaas jar file.

2. Error No such project [jsp-api] for property. 

   This corresponds to the resource declaration:

resource
  info
grouptomcat/group
namejsp-api/name
version5.0.18/version
typejar/type
  /info
/resource

   Need to figure out which of the tomcat related gump projects
   We should be linking to.

3. Error No such project [jasper-runtime] for property. 

   This corresponds to the resource declaration:

 resource
   info
 grouptomcat/group
 namejasper-runtime/name
 version5.0.25/version
 typejar/type
   /info
 /resource

   Again - need to identity the appropriate gump project.

4. Error No such project [jasper-compiler] for property. 

   This corresponds to the resource declaration:

 resource
   info
 grouptomcat/group
 namejasper-compiler/name
 version5.0.25/version
 typejar/type
   /info
 /resource

   Again - need to identity the appropriate gump project.

Cheers, Steve.




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



cvs commit: gump/project avalon-trunk.xml

2004-08-23 Thread mcconnell
mcconnell2004/08/23 17:09:00

  Modified:project  avalon-trunk.xml
  Log:
  declare logging test as a null type
  
  Revision  ChangesPath
  1.8   +0 -11 gump/project/avalon-trunk.xml
  
  Index: avalon-trunk.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-trunk.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- avalon-trunk.xml  23 Aug 2004 23:49:57 -  1.7
  +++ avalon-trunk.xml  24 Aug 2004 00:09:00 -  1.8
  @@ -174,7 +174,6 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
  @@ -1183,7 +1182,6 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
  @@ -2206,7 +2204,6 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
  @@ -2331,7 +2328,6 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
  @@ -2889,7 +2885,6 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
  @@ -2978,7 +2973,6 @@
   depend project=avalon-repository-clinoclasspath//depend
   !-- end for --
   home nested=runtime/logging/test/target/deliverables/
  -jar name=jars/avalon-logging-test-@@DATE@@.jar/
   nag to=[EMAIL PROTECTED]
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
  @@ -3861,7 +3855,6 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-syslognoclasspath//depend
   depend project=avalon-logging-logkit-socketnoclasspath//depend
   depend project=avalon-logging-logkit-datagramnoclasspath//depend
  @@ -4035,7 +4028,6 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
  @@ -4183,7 +4175,6 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging-log4jnoclasspath//depend
  @@ -4842,7 +4833,6 @@
   depend project=avalon-test-testcnoclasspath//depend
   depend project=avalon-test-testdnoclasspath//depend
   depend project=avalon-test-testenoclasspath//depend
  -depend project=avalon-logging-testnoclasspath//depend
   depend project=avalon-logging-logkit-implnoclasspath//depend
   depend project=avalon-logging-logkit-apinoclasspath//depend
   depend project=avalon-logging

what's happend to gump?

2004-08-23 Thread Stephen McConnell


Gump (in principal based on past behavior) should have kicked-off 1h 27m
ago.  Is there a problem?

Steve.

 


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



cvs commit: gump/project avalon-test.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 04:19:12

  Modified:project  avalon-test.xml
  Log:
  update to use gump alias names
  
  Revision  ChangesPath
  1.6   +11 -10gump/project/avalon-test.xml
  
  Index: avalon-test.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-test.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- avalon-test.xml   22 Aug 2004 02:24:26 -  1.5
  +++ avalon-test.xml   22 Aug 2004 11:19:12 -  1.6
  @@ -26,7 +26,7 @@
   module name=avalon-test
   
 url href=http://avalon.apache.org//
  -  descriptionMagic Test Module/description
  +  descriptionAvalon SVN Build/description
 svn repository=avalon-svn dir=trunk//
   
 project name=avalon-logkit
  @@ -40,13 +40,13 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=log4j
  +  depend property=gump.resource.log4j project=logging-log4j
   noclasspath/
 /depend
  -  depend property=gump.resource.servletapi project=servletapi
  +  depend property=gump.resource.servletapi project=jakarta-servletapi-4
   noclasspath/
 /depend
  -  depend property=gump.resource.geronimo-spec-jms 
project=geronimo-spec-jms
  +  depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
 !-- end for --
  @@ -58,6 +58,7 @@
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
   
  +
 project name=avalon-framework-api
   license name=central/system/license/LICENSE.TXT/
   ant basedir=runtime/framework/api
  @@ -85,13 +86,13 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=log4j
  +  depend property=gump.resource.log4j project=logging-log4j
   noclasspath/
 /depend
  -  depend property=gump.resource.servletapi project=servletapi
  +  depend property=gump.resource.servletapi project=jakarta-servletapi-4
   noclasspath/
 /depend
  -  depend property=gump.resource.geronimo-spec-jms 
project=geronimo-spec-jms
  +  depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
 !-- end for --
  @@ -118,13 +119,13 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=log4j
  +  depend property=gump.resource.log4j project=logging-log4j
   noclasspath/
 /depend
  -  depend property=gump.resource.servletapi project=servletapi
  +  depend property=gump.resource.servletapi project=jakarta-servletapi-4
   noclasspath/
 /depend
  -  depend property=gump.resource.geronimo-spec-jms 
project=geronimo-spec-jms
  +  depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
 !-- end for --
  
  
  

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



cvs commit: gump/profile apache-avalon.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 04:27:45

  Modified:profile  apache-avalon.xml
  Log:
  add updates re. framework and logkit
  
  Revision  ChangesPath
  1.8   +5 -1  gump/profile/apache-avalon.xml
  
  Index: apache-avalon.xml
  ===
  RCS file: /home/cvs/gump/profile/apache-avalon.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- apache-avalon.xml 4 Jul 2004 07:52:34 -   1.7
  +++ apache-avalon.xml 22 Aug 2004 11:27:45 -  1.8
  @@ -25,7 +25,11 @@
 module href=project/avalon.xml/
 module href=project/avalon-components.xml/
 module href=project/avalon-excalibur.xml/
  -  module href=project/avalon-logkit.xml/
  +  !-- module href=project/avalon-logkit.xml/ -- !-- handled in avalon-test 
--
 module href=project/avalon-phoenix.xml/
 module href=project/avalon-site.xml/
  +  module href=project/avalon-test.xml/ !-- avalon svn builds --
  +  module href=project/avalon-metro.xml/
  +
  +
   /profile
  
  
  

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



cvs commit: gump/profile apache-avalon.xml gump.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 04:54:58

  Modified:profile  apache-avalon.xml gump.xml
  Log:
  
  
  Revision  ChangesPath
  1.9   +5 -3  gump/profile/apache-avalon.xml
  
  Index: apache-avalon.xml
  ===
  RCS file: /home/cvs/gump/profile/apache-avalon.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- apache-avalon.xml 22 Aug 2004 11:27:45 -  1.8
  +++ apache-avalon.xml 22 Aug 2004 11:54:58 -  1.9
  @@ -16,11 +16,15 @@
   --
   profile name=avalon
   
  -  !-- Apache.Avalon --
   
 repository href=repository/avalon.xml/
   
  +  !-- Apache.Avalon (SVS) --
 module href=project/avalon-tools.xml/
  +  module href=project/avalon-test.xml/ !-- avalon svn builds --
  +  module href=project/avalon-metro.xml/
  +
  +  !-- Apache.Avalon (CVN) --
 module href=project/avalon-sandbox.xml/
 module href=project/avalon.xml/
 module href=project/avalon-components.xml/
  @@ -28,8 +32,6 @@
 !-- module href=project/avalon-logkit.xml/ -- !-- handled in avalon-test 
--
 module href=project/avalon-phoenix.xml/
 module href=project/avalon-site.xml/
  -  module href=project/avalon-test.xml/ !-- avalon svn builds --
  -  module href=project/avalon-metro.xml/
   
   
   /profile
  
  
  
  1.384 +6 -4  gump/profile/gump.xml
  
  Index: gump.xml
  ===
  RCS file: /home/cvs/gump/profile/gump.xml,v
  retrieving revision 1.383
  retrieving revision 1.384
  diff -u -r1.383 -r1.384
  --- gump.xml  22 Aug 2004 02:24:53 -  1.383
  +++ gump.xml  22 Aug 2004 11:54:58 -  1.384
  @@ -22,7 +22,12 @@
 !--module href=project/ant-1.5.xml/--
 module href=project/ant-antidote.xml/
   
  -!-- Apache.Avalon --
  +!-- Apache.Avalon (SVN) --
  +  module href=project/avalon-tools.xml/
  +  module href=project/avalon-test.xml/ !-- avalon svn builds --
  +  module href=project/avalon-metro.xml/
  +
  +!-- Apache.Avalon (CVS) --
 module href=project/avalon.xml/
 module href=project/avalon-components.xml/
 module href=project/avalon-excalibur.xml/
  @@ -30,9 +35,6 @@
 module href=project/avalon-sandbox.xml/
 module href=project/avalon-site.xml/
 module href=project/avalon-phoenix.xml/
  -  module href=project/avalon-tools.xml/
  -  module href=project/avalon-test.xml/ !-- avalon svn builds --
  -  module href=project/avalon-metro.xml/
   
   !-- Apache.Cocoon --
   
  
  
  

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



cvs commit: gump/project avalon-components.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 04:55:48

  Modified:project  avalon-components.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.25  +23 -17gump/project/avalon-components.xml
  
  Index: avalon-components.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-components.xml,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- avalon-components.xml 30 Mar 2004 09:17:50 -  1.24
  +++ avalon-components.xml 22 Aug 2004 11:55:48 -  1.25
  @@ -47,8 +47,9 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  -depend project=avalon-framework runtime=true id=impl/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   
   depend project=cornerstone-threads-api runtime=true/
   depend project=cornerstone-sockets-api runtime=true/
  @@ -84,8 +85,9 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  -depend project=avalon-framework runtime=true id=impl/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   
   depend project=cornerstone-connection-api runtime=true/
   depend project=cornerstone-threads-api runtime=true/
  @@ -121,7 +123,7 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  +depend project=avalon-framework-api runtime=true/
   
   !-- build-time dependencies --
   depend project=ant inherit=runtime/
  @@ -149,7 +151,7 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  +depend project=avalon-framework-api runtime=true/
   depend project=cornerstone-datasources-api runtime=true/
   depend project=excalibur-datasource runtime=true/
   depend project=excalibur-pool-api runtime=true/
  @@ -181,7 +183,7 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  +depend project=avalon-framework-api runtime=true/
   
   !-- build-time dependencies --
   depend project=ant inherit=runtime/
  @@ -209,8 +211,9 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  -depend project=avalon-framework runtime=true id=impl/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   depend project=cornerstone-scheduler-api runtime=true/
   depend project=cornerstone-threads-api runtime=true/
   depend project=excalibur-thread-api runtime=true/
  @@ -241,7 +244,7 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  +depend project=avalon-framework-api runtime=true/
   
   !-- build-time dependencies --
   depend project=ant inherit=runtime/
  @@ -269,8 +272,9 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  -depend project=avalon-framework runtime=true id=impl/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   depend project=cornerstone-sockets-api runtime=true/
   
   !-- build-time dependencies --
  @@ -299,7 +303,7 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  +depend project=avalon-framework-api runtime=true/
   
   !-- build-time dependencies --
   depend project=ant inherit=runtime/
  @@ -327,8 +331,9 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  -depend project=avalon-framework runtime=true id=impl/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   depend project=cornerstone-store-api runtime=true/
   
   !-- build-time dependencies --
  @@ -385,8 +390,9 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api

cvs commit: gump/project barcode4j.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 04:56:55

  Modified:project  barcode4j.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.6   +3 -1  gump/project/barcode4j.xml
  
  Index: barcode4j.xml
  ===
  RCS file: /home/cvs/gump/project/barcode4j.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- barcode4j.xml 6 May 2004 16:03:40 -   1.5
  +++ barcode4j.xml 22 Aug 2004 11:56:55 -  1.6
  @@ -76,7 +76,9 @@
   javadoc nested=build/javadocs/
   
   depend project=ant inherit=runtime/
  -depend project=avalon-framework/
  +depend project=avalon-framework-api/
  +depend project=avalon-framework-legacy/
  +depend project=avalon-framework=impl/
   depend project=jakarta-servletapi-4 /
   depend project=jdom/
   depend project=commons-cli/
  
  
  

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



cvs commit: gump/project db-torque.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 05:00:55

  Modified:project  db-torque.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.14  +3 -1  gump/project/db-torque.xml
  
  Index: db-torque.xml
  ===
  RCS file: /home/cvs/gump/project/db-torque.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- db-torque.xml 11 Aug 2004 10:32:26 -  1.13
  +++ db-torque.xml 22 Aug 2004 12:00:55 -  1.14
  @@ -32,7 +32,9 @@
 property name=maven.final.name value=torque-@@DATE@@/
   /ant
   
  -depend project=avalon-framework/
  +depend project=avalon-framework-api/
  +depend project=avalon-framework-legacy/
  +depend project=avalon-framework-impl/
   depend project=commons-beanutils-core/
   depend project=commons-collections/
   depend project=commons-configuration/
  
  
  

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



cvs commit: gump/project jakarta-turbine-2.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 05:03:25

  Modified:project  jakarta-turbine-2.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.32  +4 -1  gump/project/jakarta-turbine-2.xml
  
  Index: jakarta-turbine-2.xml
  ===
  RCS file: /home/cvs/gump/project/jakarta-turbine-2.xml,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- jakarta-turbine-2.xml 27 Feb 2004 13:33:56 -  1.31
  +++ jakarta-turbine-2.xml 22 Aug 2004 12:03:25 -  1.32
  @@ -41,7 +41,10 @@
   depend project=ant/
   depend project=xml-xerces/
   
  -depend project=avalon-framework id=combined/
  +depend project=avalon-framework-api/
  +depend project=avalon-framework-legacy/
  +depend project=avalon-framework-impl/
  +
   depend project=cryptix/
   depend project=commons-codec/
   depend project=commons-collections/
  
  
  

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



cvs commit: gump/project jakarta-turbine-fulcrum.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 05:04:58

  Modified:project  jakarta-turbine-fulcrum.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.42  +3 -2  gump/project/jakarta-turbine-fulcrum.xml
  
  Index: jakarta-turbine-fulcrum.xml
  ===
  RCS file: /home/cvs/gump/project/jakarta-turbine-fulcrum.xml,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- jakarta-turbine-fulcrum.xml   27 Feb 2004 13:33:56 -  1.41
  +++ jakarta-turbine-fulcrum.xml   22 Aug 2004 12:04:58 -  1.42
  @@ -27,8 +27,9 @@
 /property
   /ant
   packageorg.apache.fulcrum/package
  -depend project=avalon-framework id=combined
  -/depend
  +depend project=avalon-framework-api/
  +depend project=avalon-framework-legacy/
  +depend project=avalon-framework-impl/
   depend project=bsf
   /depend
   depend project=commons-codec
  
  
  

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



cvs commit: gump/project jelly-tags.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 05:07:44

  Modified:project  jelly-tags.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.66  +3 -1  gump/project/jelly-tags.xml
  
  Index: jelly-tags.xml
  ===
  RCS file: /home/cvs/gump/project/jelly-tags.xml,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- jelly-tags.xml6 Jul 2004 05:58:07 -   1.65
  +++ jelly-tags.xml22 Aug 2004 12:07:44 -  1.66
  @@ -78,7 +78,9 @@
   
   depend project=commons-jelly inherit=all/
   depend project=commons-cli/
  -depend project=avalon-framework id=combined/
  +depend project=avalon-framework-api/
  +depend project=avalon-framework-legacy/
  +depend project=avalon-framework-impl/
   
   work nested=avalon/target/classes/
   work nested=avalon/target/test-classes/
  
  
  

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



cvs commit: gump/project avalon-phoenix.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 05:16:03

  Modified:project  avalon-phoenix.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.70  +7 -2  gump/project/avalon-phoenix.xml
  
  Index: avalon-phoenix.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-phoenix.xml,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- avalon-phoenix.xml3 Jun 2004 19:06:13 -   1.69
  +++ avalon-phoenix.xml22 Aug 2004 12:16:03 -  1.70
  @@ -52,7 +52,10 @@
   depend project=avalon-phoenix-dependencies/
   depend property=xerces.jar project=xml-xerces id=parser 
runtime=true/
   depend project=dist-avalon-logkit runtime=true/
  -depend project=avalon-framework runtime=true id=combined/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
  +
   depend project=excalibur-compatibility runtime=true/
   depend project=excalibur-logger runtime=true/
   depend project=excalibur-i18n runtime=true/
  @@ -112,7 +115,9 @@
   depend project=junit/
   depend project=ant/
   depend project=xml-xerces/
  -depend project=avalon-framework id=combined/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   depend project=avalon-phoenix inherit=all/
   
   option project=checkstyle inherit=runtime/
  
  
  

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



cvs commit: gump/project xml-fop.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 05:10:14

  Modified:project  xml-fop.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.30  +3 -1  gump/project/xml-fop.xml
  
  Index: xml-fop.xml
  ===
  RCS file: /home/cvs/gump/project/xml-fop.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- xml-fop.xml   7 Apr 2004 06:34:40 -   1.29
  +++ xml-fop.xml   22 Aug 2004 12:10:14 -  1.30
  @@ -35,7 +35,9 @@
   depend project=ant inherit=runtime/
   depend project=xml-batik/
   !--depend project=avalon-logkit runtime=true/--
  -depend project=avalon-framework runtime=true id=combined/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   depend project=commons-logging runtime=true/
   depend project=commons-io runtime=true/
   depend project=jfor/
  
  
  

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



cvs commit: gump/project xml-fop-maintenance.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 05:10:20

  Modified:project  xml-fop-maintenance.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.6   +4 -1  gump/project/xml-fop-maintenance.xml
  
  Index: xml-fop-maintenance.xml
  ===
  RCS file: /home/cvs/gump/project/xml-fop-maintenance.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- xml-fop-maintenance.xml   27 Feb 2004 09:22:57 -  1.5
  +++ xml-fop-maintenance.xml   22 Aug 2004 12:10:20 -  1.6
  @@ -34,7 +34,10 @@
   depend project=xml-xalan2/
   depend project=ant inherit=runtime/
   depend project=xml-batik/
  -depend project=avalon-framework runtime=true id=combined/
  +
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   
   !-- for SerializeHyphPattern task --
   work nested=build/classes/
  
  
  

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



cvs commit: gump/project james-server.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 05:12:39

  Modified:project  james-server.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.18  +5 -1  gump/project/james-server.xml
  
  Index: james-server.xml
  ===
  RCS file: /home/cvs/gump/project/james-server.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- james-server.xml  22 Aug 2004 01:19:20 -  1.17
  +++ james-server.xml  22 Aug 2004 12:12:39 -  1.18
  @@ -40,7 +40,11 @@
   /ant
   depend project=ant/
   depend project=xml-xerces/
  -depend project=avalon-framework inherit=runtime/
  +
  +depend project=avalon-framework-api inherit=runtime/
  +depend project=avalon-framework-legacy inherit=runtime/
  +depend project=avalon-framework-impl inherit=runtime/
  +
   depend project=cornerstone-threads-api/
   depend project=cornerstone-threads-impl inherit=runtime/
   depend project=cornerstone-connection-api/
  
  
  

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



cvs commit: gump/project incubator-altrmi.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 06:16:36

  Modified:project  incubator-altrmi.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.28  +3 -1  gump/project/incubator-altrmi.xml
  
  Index: incubator-altrmi.xml
  ===
  RCS file: /home/cvs/gump/project/incubator-altrmi.xml,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- incubator-altrmi.xml  30 Jul 2004 14:56:15 -  1.27
  +++ incubator-altrmi.xml  22 Aug 2004 13:16:36 -  1.28
  @@ -32,7 +32,9 @@
   depend project=ant inherit=runtime/
   option project=checkstyle inherit=runtime/
   depend project=junit/
  -depend project=avalon-framework runtime=true id=combined/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   depend project=xml-xerces/
   depend project=xml-xalan2/
   depend project=jakarta-bcel/
  
  
  

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



cvs commit: gump/project avalon-excalibur.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 06:25:42

  Modified:project  avalon-excalibur.xml
  Log:
  make framework deps explicit
  
  Revision  ChangesPath
  1.155 +94 -39gump/project/avalon-excalibur.xml
  
  Index: avalon-excalibur.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-excalibur.xml,v
  retrieving revision 1.154
  retrieving revision 1.155
  diff -u -r1.154 -r1.155
  --- avalon-excalibur.xml  20 Aug 2004 06:09:57 -  1.154
  +++ avalon-excalibur.xml  22 Aug 2004 13:25:42 -  1.155
  @@ -67,7 +67,10 @@
   property name=project.version value=@@DATE@@/
   /ant
   
  -depend project=avalon-framework runtime=true id=combined/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
  +
   depend project=commons-collections runtime=true/
   depend project=excalibur-instrument runtime=true/
   depend project=excalibur-instrument-manager runtime=true id=main/
  @@ -115,7 +118,9 @@
   property name=project.version value=@@DATE@@/
   /ant
   
  -depend project=avalon-framework runtime=true id=combined/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   depend project=avalon-logkit runtime=true/
   depend project=excalibur-component runtime=true inherit=runtime/
   depend project=junit runtime=true/
  @@ -157,7 +162,9 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=combined/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   depend property=isorelax.jar project=iso-relax runtime=true/
   depend project=jing runtime=true/
   
  @@ -202,7 +209,9 @@
   depend project=ant inherit=runtime/
   option project=checkstyle inherit=runtime/
   depend project=junit/
  -depend project=avalon-framework runtime=true id=combined/
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   depend project=xml-xerces/
   depend project=xml-xalan2/
   depend project=concurrent/
  @@ -239,7 +248,7 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api/
  +depend project=avalon-framework-api runtime=true/
   
   !-- build-time dependencies --
   depend project=ant inherit=runtime/
  @@ -274,8 +283,9 @@
   /ant
   
   !-- runtime dependencies --
  -depend project=avalon-framework runtime=true id=api /
  -depend project=avalon-framework runtime=true id=impl /
  +depend project=avalon-framework-api runtime=true/
  +depend project=avalon-framework-legacy runtime=true/
  +depend project=avalon-framework-impl runtime=true/
   depend project=excalibur-event-api runtime=true /
   
   depend project=commons-collections runtime=true/
  @@ -323,7 +333,9 @@
   depend project=xml-xalan2/
   depend project=junit/
   
  -depend project=avalon-framework/
  +depend project=avalon-framework-api/
  +depend project=avalon-framework-legacy/
  +depend project=avalon-framework-impl/
   depend project=excalibur-event-api/
   depend project=excalibur-event-impl/
   
  @@ -355,7 +367,9 @@
   depend project=xml-xalan2/
   depend project=junit/
   
  -depend project=avalon-framework/
  +depend project=avalon-framework-api/
  +depend project=avalon-framework-legacy/
  +depend project=avalon-framework-impl/
   depend project=excalibur-fortress-container-api/
   depend project=excalibur-fortress-meta/
   depend project=avalon-logkit/
  @@ -405,7 +419,10 @@
   depend project=junit/
   depend project=xml-apis /
   
  -depend project=avalon-framework/
  +depend project=avalon-framework-api/
  +depend project=avalon-framework-legacy/
  +depend project=avalon-framework-impl/
  +
   depend project=avalon-logkit/
   depend project=excalibur-fortress-container-api /
   depend project=excalibur-fortress-container-impl /
  @@ -463,7 +480,9 @@
   
   depend project=excalibur-fortress-container-api/
   depend project=excalibur-fortress-container-impl/
  -depend project=avalon-framework

cvs commit: gump/project avalon-test.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 07:16:19

  Modified:project  avalon-test.xml
  Log:
  add all cornerstone components
  
  Revision  ChangesPath
  1.7   +413 -0gump/project/avalon-test.xml
  
  Index: avalon-test.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-test.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- avalon-test.xml   22 Aug 2004 11:19:12 -  1.6
  +++ avalon-test.xml   22 Aug 2004 14:16:19 -  1.7
  @@ -142,6 +142,419 @@
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
   
  +  project name=cornerstone-connection-impl
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=planet/cornerstone/connection/impl
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- external references --
  +  depend property=gump.resource.excalibur-thread-api 
project=excalibur-thread-api
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.excalibur-thread-impl 
project=excalibur-thread-impl
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.excalibur-pool-impl 
project=excalibur-pool-impl
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.excalibur-pool-api 
project=excalibur-pool-api
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.mailapi project=javamail
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.log4j project=logging-log4j
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.servletapi project=jakarta-servletapi-4
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.geronimo-spec-jms project=jms
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.commons-collections 
project=commons-collections
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.concurrent project=concurrent
  +noclasspath/
  +  /depend
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +!-- for gump --
  +depend project=cornerstone-connection-apinoclasspath//depend
  +depend project=cornerstone-sockets-apinoclasspath//depend
  +depend project=cornerstone-threads-apinoclasspath//depend
  +depend project=avalon-framework-apinoclasspath//depend
  +depend project=cornerstone-threads-implnoclasspath//depend
  +depend project=avalon-framework-implnoclasspath//depend
  +depend project=avalon-framework-legacynoclasspath//depend
  +depend project=avalon-logkitnoclasspath//depend
  +!-- end for --
  +home nested=planet/cornerstone/connection/impl/target/deliverables/
  +jar name=jars/cornerstone-connection-impl-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  +  /project
  +
  +  project name=cornerstone-scheduler-api
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=planet/cornerstone/scheduler/api
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +!-- for gump --
  +depend project=avalon-framework-apinoclasspath//depend
  +!-- end for --
  +home nested=planet/cornerstone/scheduler/api/target/deliverables/
  +jar name=jars/cornerstone-scheduler-api-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  +  /project
  +
  +  project name=cornerstone-connection-api
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=planet/cornerstone/connection/api
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- external references --
  +  depend property=gump.resource.excalibur-thread-api 
project=excalibur-thread-api
  +noclasspath/
  +  /depend
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +!-- for gump --
  +depend project=cornerstone-sockets-apinoclasspath//depend
  +depend project=cornerstone-threads-apinoclasspath//depend
  +depend project=avalon-framework-apinoclasspath//depend
  +!-- end for --
  +home nested=planet/cornerstone/connection/api/target/deliverables/
  +jar name=jars/cornerstone-connection-api-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED

cvs commit: gump/project avalon-excalibur.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 07:35:55

  Modified:project  avalon-excalibur.xml
  Log:
  correct repository reference
  
  Revision  ChangesPath
  1.156 +1 -1  gump/project/avalon-excalibur.xml
  
  Index: avalon-excalibur.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-excalibur.xml,v
  retrieving revision 1.155
  retrieving revision 1.156
  diff -u -r1.155 -r1.156
  --- avalon-excalibur.xml  22 Aug 2004 13:25:42 -  1.155
  +++ avalon-excalibur.xml  22 Aug 2004 14:35:55 -  1.156
  @@ -22,7 +22,7 @@
   Repository of reusable components.
   /description
   
  -svn repository=excalibur dir=trunk/
  +svn repository=excalibur-svn dir=trunk/
   
 project name=excalibur-compatibility
   !-- this project is the merge of several packages which previously
  
  
  

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



cvs commit: gump/project avalon-svn.xml jakarta-jmeter.xml avalon-metro.xml avalon-test.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 08:17:38

  Modified:profile  apache-avalon.xml gump.xml
   project  jakarta-jmeter.xml
  Added:   project  avalon-svn.xml
  Removed: project  avalon-metro.xml avalon-test.xml
  Log:
  add note to jakarta-jmeter, add avalon-svn containing all 136 avalon projects, and 
remove temp test files
  
  Revision  ChangesPath
  1.11  +1 -2  gump/profile/apache-avalon.xml
  
  http://cvs.apache.org/viewcvs/gump/profile/apache-avalon.xml.diff?r1=1.10r2=1.11
  
  
  1.386 +1 -2  gump/profile/gump.xml
  
  http://cvs.apache.org/viewcvs/gump/profile/gump.xml.diff?r1=1.385r2=1.386
  
  
  1.103 +20 -12gump/project/jakarta-jmeter.xml
  
  http://cvs.apache.org/viewcvs/gump/project/jakarta-jmeter.xml.diff?r1=1.102r2=1.103
  
  
  1.1  gump/project/avalon-svn.xml
  
  http://cvs.apache.org/viewcvs/gump/project/avalon-svn.xml?rev=1.1
  
  

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



more on gump

2004-08-22 Thread Stephen McConnell

I have just replaced all of the avalon/trunk gump project descriptors so
that they now point to svn content as opposed to cvs.  

I am expecting some errors related to project id to gump id names
mappings and will sort these out as they come up.  All of the new gump
project definitions (138 in total) are using magic to build the
respective targets based on generated definitions - so if something goes
wrong we should be updating information in either magic's gump task or
more probably gump alias declarations in our local index files.

Steve.




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



RE: more on gump -- cocoon def

2004-08-22 Thread Stephen McConnell

Could someone please update the cocoon-2.1/cocoon gump descriptor and
replace the following line:

  depend project=avalon-framework ids=impl api /

with:

  depend project=avalon-framework-api/
  depend project=avalon-framework-legacy/
  depend project=avalon-framework-impl/

Cheers, Steve.


 -Original Message-
 From: Stephen McConnell [mailto:[EMAIL PROTECTED]
 Sent: 22 August 2004 17:29
 To: Avalon Developers List
 Cc: [EMAIL PROTECTED]
 Subject: more on gump
 
 
 I have just replaced all of the avalon/trunk gump project descriptors
so
 that they now point to svn content as opposed to cvs.
 
 I am expecting some errors related to project id to gump id names
 mappings and will sort these out as they come up.  All of the new gump
 project definitions (138 in total) are using magic to build the
 respective targets based on generated definitions - so if something
goes
 wrong we should be updating information in either magic's gump task or
 more probably gump alias declarations in our local index files.
 
 Steve.
 
 
 
 
 -
 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]



cvs commit: gump/project avalon-svn.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 08:58:12

  Modified:project  avalon-svn.xml
  Log:
  add log4j id
  
  Revision  ChangesPath
  1.2   +89 -88gump/project/avalon-svn.xml
  
  Index: avalon-svn.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-svn.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- avalon-svn.xml22 Aug 2004 15:17:38 -  1.1
  +++ avalon-svn.xml22 Aug 2004 15:58:12 -  1.2
  @@ -40,7 +40,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -87,7 +87,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -122,7 +122,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -202,7 +202,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -256,7 +256,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -301,7 +301,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -338,7 +338,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -401,7 +401,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -463,7 +463,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -522,7 +522,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -596,7 +596,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j
  +  depend property=gump.resource.log4j project=logging-log4j id=log4j
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -631,7 +631,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging

cvs commit: gump/project avalon-svn.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 09:32:41

  Modified:project  avalon-svn.xml
  Log:
  update some more alias names
  
  Revision  ChangesPath
  1.3   +27 -27gump/project/avalon-svn.xml
  
  Index: avalon-svn.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-svn.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- avalon-svn.xml22 Aug 2004 15:58:12 -  1.2
  +++ avalon-svn.xml22 Aug 2004 16:32:40 -  1.3
  @@ -49,7 +49,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jetty 
project=org.mortbay.jetty
  +  depend property=gump.resource.org.mortbay.jetty project=packaged-jetty
   noclasspath/
 /depend
 !-- end for --
  @@ -395,7 +395,7 @@
 property name=magic.home reference=home project=magic/
 property name=gump.signature value=@@DATE@@/
 !-- external references --
  -  depend property=gump.resource.org.mortbay.jetty 
project=org.mortbay.jetty
  +  depend property=gump.resource.org.mortbay.jetty project=packaged-jetty
   noclasspath/
 /depend
 depend property=gump.resource.mailapi project=javamail
  @@ -413,7 +413,7 @@
 depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
   noclasspath/
 /depend
  -  depend property=gump.resource.commons-logging project=commons-logging
  +  depend property=gump.resource.commons-logging project=commons-logging 
id=commans-logging
   noclasspath/
 /depend
 depend property=gump.resource.jsp-api project=jsp-api
  @@ -457,7 +457,7 @@
 property name=magic.home reference=home project=magic/
 property name=gump.signature value=@@DATE@@/
 !-- external references --
  -  depend property=gump.resource.org.mortbay.jetty 
project=org.mortbay.jetty
  +  depend property=gump.resource.org.mortbay.jetty project=packaged-jetty
   noclasspath/
 /depend
 depend property=gump.resource.mailapi project=javamail
  @@ -475,7 +475,7 @@
 depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
   noclasspath/
 /depend
  -  depend property=gump.resource.commons-logging project=commons-logging
  +  depend property=gump.resource.commons-logging project=commons-logging 
id=commans-logging
   noclasspath/
 /depend
 depend property=gump.resource.jsp-api project=jsp-api
  @@ -973,7 +973,7 @@
 depend property=gump.resource.commons-digester project=commons-digester
   noclasspath/
 /depend
  -  depend property=gump.resource.commons-logging project=commons-logging
  +  depend property=gump.resource.commons-logging project=commons-logging 
id=commans-logging
   noclasspath/
 /depend
 depend property=gump.resource.commons-beanutils 
project=commons-beanutils
  @@ -1233,7 +1233,7 @@
 property name=magic.home reference=home project=magic/
 property name=gump.signature value=@@DATE@@/
 !-- external references --
  -  depend property=gump.resource.org.mortbay.jetty 
project=org.mortbay.jetty
  +  depend property=gump.resource.org.mortbay.jetty project=packaged-jetty
   noclasspath/
 /depend
 depend property=gump.resource.mailapi project=javamail
  @@ -1251,7 +1251,7 @@
 depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
   noclasspath/
 /depend
  -  depend property=gump.resource.commons-logging project=commons-logging
  +  depend property=gump.resource.commons-logging project=commons-logging 
id=commans-logging
   noclasspath/
 /depend
 depend property=gump.resource.jsp-api project=jsp-api
  @@ -1382,13 +1382,13 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.org.mortbay.jetty 
project=org.mortbay.jetty
  +  depend property=gump.resource.org.mortbay.jetty project=packaged-jetty
   noclasspath/
 /depend
 depend property=gump.resource.org.mortbay.jaas project=org.mortbay.jaas
   noclasspath/
 /depend
  -  depend property=gump.resource.commons-logging project=commons-logging
  +  depend property=gump.resource.commons-logging project=commons-logging 
id=commans-logging
   noclasspath/
 /depend
 depend property=gump.resource.jsp-api project=jsp-api
  @@ -1551,7 +1551,7 @@
 property name=magic.home reference=home project=magic/
 property name=gump.signature value=@@DATE@@/
 !-- external references --
  -  depend property=gump.resource.org.mortbay.jetty 
project=org.mortbay.jetty
  +  depend property

cvs commit: gump/project avalon-svn.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 10:09:03

  Modified:project  avalon-svn.xml
  Log:
  add alias defs for jta and mx4j
  
  Revision  ChangesPath
  1.5   +11 -11gump/project/avalon-svn.xml
  
  Index: avalon-svn.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-svn.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- avalon-svn.xml22 Aug 2004 16:41:06 -  1.4
  +++ avalon-svn.xml22 Aug 2004 17:09:03 -  1.5
  @@ -531,7 +531,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-jmx project=mx4j-jmx
  +  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
 !-- end for --
  @@ -958,7 +958,7 @@
 depend property=gump.resource.commons-messenger 
project=commons-messenger
   noclasspath/
 /depend
  -  depend property=gump.resource.geronimo-spec-jta 
project=geronimo-spec-jta
  +  depend property=gump.resource.geronimo-spec-jta project=jta id=jta
   noclasspath/
 /depend
 depend property=gump.resource.mailapi project=javamail
  @@ -1765,7 +1765,7 @@
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-jmx project=mx4j-jmx
  +  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
 depend property=gump.resource.concurrent project=concurrent
  @@ -1795,7 +1795,7 @@
 depend property=gump.resource.jasper-compiler project=jasper-compiler
   noclasspath/
 /depend
  -  depend property=gump.resource.geronimo-spec-jta 
project=geronimo-spec-jta
  +  depend property=gump.resource.geronimo-spec-jta project=jta id=jta
   noclasspath/
 /depend
 depend property=gump.resource.commons-digester project=commons-digester
  @@ -1804,7 +1804,7 @@
 depend property=gump.resource.commons-beanutils 
project=commons-beanutils
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
   noclasspath/
 /depend
 !-- end for --
  @@ -1999,7 +1999,7 @@
 depend property=gump.resource.commons-messenger 
project=commons-messenger
   noclasspath/
 /depend
  -  depend property=gump.resource.geronimo-spec-jta 
project=geronimo-spec-jta
  +  depend property=gump.resource.geronimo-spec-jta project=jta id=jta
   noclasspath/
 /depend
 depend property=gump.resource.mailapi project=javamail
  @@ -2997,7 +2997,7 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-jmx project=mx4j-jmx
  +  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
 !-- end for --
  @@ -3080,10 +3080,10 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-jmx project=mx4j-jmx
  +  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
   noclasspath/
 /depend
 !-- end for --
  @@ -3424,10 +3424,10 @@
 depend property=gump.resource.geronimo-spec-jms project=jms
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-jmx project=mx4j-jmx
  +  depend property=gump.resource.mx4j-jmx project=mx4j id=mx4j-jmx
   noclasspath/
 /depend
  -  depend property=gump.resource.mx4j-tools project=mx4j-tools
  +  depend property=gump.resource.mx4j-tools project=mx4j-tools 
id=mx4j-tools
   noclasspath/
 /depend
 !-- end for --
  
  
  

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



cvs commit: gump/profile gump.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 10:31:38

  Modified:profile  gump.xml
  Log:
  add excalibur svn repository reference
  
  Revision  ChangesPath
  1.387 +1 -0  gump/profile/gump.xml
  
  Index: gump.xml
  ===
  RCS file: /home/cvs/gump/profile/gump.xml,v
  retrieving revision 1.386
  retrieving revision 1.387
  diff -u -r1.386 -r1.387
  --- gump.xml  22 Aug 2004 15:17:38 -  1.386
  +++ gump.xml  22 Aug 2004 17:31:38 -  1.387
  @@ -361,6 +361,7 @@
 repository href=repository/apache-svn-sandbox.xml/
 repository href=repository/apache-incubator-svn.xml/
 repository href=repository/avalon-svn.xml/
  +  repository href=repository/excalibur-svn.xml/
 repository href=repository/forrest.xml/
 repository href=repository/xml-svn.xml/
   
  
  
  

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



RE: more on gump

2004-08-22 Thread Stephen McConnell


Ummm - I'm a little lost -

   ... all Avalon projects are failing with the assertion that build.xml
does not exist.  That's a little odd because it exists in svn and the
ant basedirs are all correct.  Can anyone check if there were any
problems with gump's svn checkout of the Avalon-svn repository content?

Steve.


 -Original Message-
 From: Stephen McConnell [mailto:[EMAIL PROTECTED]
 Sent: 22 August 2004 17:29
 To: Avalon Developers List
 Cc: [EMAIL PROTECTED]
 Subject: more on gump
 
 
 I have just replaced all of the avalon/trunk gump project descriptors
so
 that they now point to svn content as opposed to cvs.
 
 I am expecting some errors related to project id to gump id names
 mappings and will sort these out as they come up.  All of the new gump
 project definitions (138 in total) are using magic to build the
 respective targets based on generated definitions - so if something
goes
 wrong we should be updating information in either magic's gump task or
 more probably gump alias declarations in our local index files.
 
 Steve.
 
 
 
 
 -
 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: more on gump

2004-08-22 Thread Stephen McConnell


 -Original Message-
 From: Stephen McConnell [mailto:[EMAIL PROTECTED]
 Sent: 22 August 2004 21:05
 To: 'Gump code and data'
 Subject: RE: more on gump
 
 
 
 Ummm - I'm a little lost -
 
... all Avalon projects are failing with the assertion that
build.xml
 does not exist.  That's a little odd because it exists in svn and the
ant
 basedirs are all correct.  Can anyone check if there were any problems
 with gump's svn checkout of the Avalon-svn repository content?

p.s. on this page:

http://brutus.apache.org/gump/public/avalon/index.html

There is this note:

  Error *** Failed to update from source control. Stale contents ***

And this following link:

http://brutus.apache.org/gump/public/avalon/gump_work/update_avalon.html

shows an output message of:

  svn: 'avalon' is not a working copy


Steve.



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



cvs commit: gump/project avalon-svn.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 12:22:17

  Modified:project  avalon-svn.xml
  Log:
  change the module name just in case there is a conflict with the cvs related project 
defintions
  
  Revision  ChangesPath
  1.6   +1 -1  gump/project/avalon-svn.xml
  
  Index: avalon-svn.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-svn.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- avalon-svn.xml22 Aug 2004 17:09:03 -  1.5
  +++ avalon-svn.xml22 Aug 2004 19:22:17 -  1.6
  @@ -23,7 +23,7 @@
   --
   
   
  -module name=avalon
  +module name=avalon-svn
   
 url href=http://avalon.apache.org//
 descriptionAvalon SVN/description
  
  
  

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



cvs commit: gump/project avalon-svn.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 15:08:46

  Modified:project  avalon-svn.xml
  Log:
  
  
  Revision  ChangesPath
  1.8   +1 -1  gump/project/avalon-svn.xml
  
  Index: avalon-svn.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-svn.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- avalon-svn.xml22 Aug 2004 22:04:00 -  1.7
  +++ avalon-svn.xml22 Aug 2004 22:08:46 -  1.8
  @@ -23,7 +23,7 @@
   --
   
   
  -module name=avalon
  +module name=avalon-svn
   
 url href=http://avalon.apache.org//
 descriptionAvalon SVN/description
  
  
  

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



cvs commit: gump/project avalon-svn.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 18:24:58

  Modified:project  avalon-svn.xml
  Log:
  link to log4j-12
  
  Revision  ChangesPath
  1.9   +89 -89gump/project/avalon-svn.xml
  
  Index: avalon-svn.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-svn.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- avalon-svn.xml22 Aug 2004 22:08:46 -  1.8
  +++ avalon-svn.xml23 Aug 2004 01:24:58 -  1.9
  @@ -23,7 +23,7 @@
   --
   
   
  -module name=avalon-svn
  +module name=avalon
   
 url href=http://avalon.apache.org//
 descriptionAvalon SVN/description
  @@ -40,7 +40,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -87,7 +87,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -122,7 +122,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -202,7 +202,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -256,7 +256,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -301,7 +301,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -338,7 +338,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -401,7 +401,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -463,7 +463,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -522,7 +522,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property=gump.resource.servletapi project=jakarta-servletapi-4
  @@ -596,7 +596,7 @@
 depend property=gump.resource.mailapi project=javamail
   noclasspath/
 /depend
  -  depend property=gump.resource.log4j project=logging-log4j id=log4j lf5
  +  depend property=gump.resource.log4j project=logging-log4j-12
   noclasspath/
 /depend
 depend property

cvs commit: gump/project avalon-svn.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 18:41:39

  Modified:project  avalon-svn.xml
  Log:
  update to include plugin deps
  
  Revision  ChangesPath
  1.10  +57 -0 gump/project/avalon-svn.xml
  
  Index: avalon-svn.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-svn.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- avalon-svn.xml23 Aug 2004 01:24:58 -  1.9
  +++ avalon-svn.xml23 Aug 2004 01:41:38 -  1.10
  @@ -69,6 +69,7 @@
   depend project=avalon-logkitnoclasspath//depend
   depend project=avalon-http-spinoclasspath//depend
   depend project=avalon-http-apinoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=planet/facilities/reflector/impl/target/deliverables/
   jar name=jars/metro-reflector-impl-@@DATE@@.jar/
  @@ -226,6 +227,7 @@
   depend project=avalon-framework-legacynoclasspath//depend
   depend project=avalon-logkitnoclasspath//depend
   depend project=avalon-util-i18nnoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=planet/facilities/jmx/handler/target/deliverables/
   jar name=jars/avalon-jmx-handler-@@DATE@@.jar/
  @@ -283,6 +285,7 @@
   depend project=avalon-framework-implnoclasspath//depend
   depend project=avalon-framework-legacynoclasspath//depend
   depend project=avalon-logkitnoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=planet/cornerstone/connection/impl/target/deliverables/
   jar name=jars/cornerstone-connection-impl-@@DATE@@.jar/
  @@ -320,6 +323,7 @@
   depend project=avalon-logkitnoclasspath//depend
   depend project=avalon-tutorial-location-apinoclasspath//depend
   depend project=avalon-tutorial-publisher-apinoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=planet/tutorials/composition/location/impl/target/deliverables/
   jar name=jars/avalon-tutorial-location-impl-@@DATE@@.jar/
  @@ -361,6 +365,7 @@
   depend project=avalon-framework-implnoclasspath//depend
   depend project=avalon-framework-legacynoclasspath//depend
   depend project=avalon-logkitnoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=planet/facilities/finder/impl/target/deliverables/
   jar name=jars/avalon-finder-impl-@@DATE@@.jar/
  @@ -442,6 +447,7 @@
   depend project=avalon-logkitnoclasspath//depend
   depend project=avalon-http-utilnoclasspath//depend
   depend project=avalon-util-configurationnoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=planet/facilities/http/impl/target/deliverables/
   jar name=jars/avalon-http-impl-@@DATE@@.jar/
  @@ -613,6 +619,7 @@
   depend project=avalon-framework-apinoclasspath//depend
   depend project=avalon-framework-legacynoclasspath//depend
   depend project=avalon-logkitnoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=planet/tutorials/dependencies/auto/target/deliverables/
   jar name=jars/avalon-tutorial-dependency-auto-@@DATE@@.jar/
  @@ -717,6 +724,7 @@
   depend project=avalon-framework-legacynoclasspath//depend
   depend project=avalon-logkitnoclasspath//depend
   depend project=avalon-util-lifecyclenoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=runtime/test/playground/target/deliverables/
   jar name=jars/avalon-test-playground-@@DATE@@.jar/
  @@ -752,6 +760,7 @@
   depend project=avalon-framework-apinoclasspath//depend
   depend project=avalon-framework-legacynoclasspath//depend
   depend project=avalon-logkitnoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=planet/tutorials/configuration/injection/target/deliverables/
   jar name=jars/avalon-tutorial-config-injection-@@DATE@@.jar/
  @@ -880,6 +889,7 @@
   depend project=avalon-framework-implnoclasspath//depend
   depend project=avalon-framework-legacynoclasspath//depend
   depend project=avalon-logkitnoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end for --
   home nested=planet/cornerstone/threads/impl/target/deliverables/
   jar name=jars/cornerstone-threads-impl-@@DATE@@.jar/
  @@ -993,6 +1003,7 @@
   depend project=avalon-framework-implnoclasspath//depend
   depend project=avalon-framework-legacynoclasspath//depend
   depend project=avalon-logkitnoclasspath//depend
  +depend project=avalon-meta-toolsnoclasspath//depend
   !-- end

cvs commit: gump/project avalon-trunk.xml avalon-svn.xml

2004-08-22 Thread mcconnell
mcconnell2004/08/22 19:40:52

  Modified:profile  apache-avalon.xml gump.xml
  Added:   project  avalon-trunk.xml
  Removed: project  avalon-svn.xml
  Log:
  its confirmed that there is a conflict if the module is named avalon (even though 
there are no modules named avalon in the worksapce) - so this commmit changes the main 
avalon content to a module named avalon-trunk in a file under the path 
project/avalon-trunk
  
  Revision  ChangesPath
  1.12  +1 -4  gump/profile/apache-avalon.xml
  
  http://cvs.apache.org/viewcvs/gump/profile/apache-avalon.xml.diff?r1=1.11r2=1.12
  
  
  1.388 +1 -1  gump/profile/gump.xml
  
  http://cvs.apache.org/viewcvs/gump/profile/gump.xml.diff?r1=1.387r2=1.388
  
  
  1.1  gump/project/avalon-trunk.xml
  
  http://cvs.apache.org/viewcvs/gump/project/avalon-trunk.xml?rev=1.1
  
  

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



cvs commit: gump/profile gump.xml

2004-08-21 Thread mcconnell
mcconnell2004/08/21 17:45:57

  Modified:profile  gump.xml
  Log:
  add avalon-test.xml
  
  Revision  ChangesPath
  1.381 +1 -0  gump/profile/gump.xml
  
  Index: gump.xml
  ===
  RCS file: /home/cvs/gump/profile/gump.xml,v
  retrieving revision 1.380
  retrieving revision 1.381
  diff -u -r1.380 -r1.381
  --- gump.xml  18 Aug 2004 03:52:49 -  1.380
  +++ gump.xml  22 Aug 2004 00:45:57 -  1.381
  @@ -31,6 +31,7 @@
 module href=project/avalon-site.xml/
 module href=project/avalon-phoenix.xml/
 module href=project/avalon-tools.xml/
  +  module href=project/avalon-test.xml/
   
   !-- Apache.Cocoon --
   
  
  
  

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



cvs commit: gump/project avalon-test.xml

2004-08-21 Thread mcconnell
mcconnell2004/08/21 17:50:59

  Modified:project  avalon-test.xml
  Log:
  add avalon-framework-xxx-test
  
  Revision  ChangesPath
  1.2   +84 -0 gump/project/avalon-test.xml
  
  Index: avalon-test.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-test.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- avalon-test.xml   22 Aug 2004 00:45:29 -  1.1
  +++ avalon-test.xml   22 Aug 2004 00:50:59 -  1.2
  @@ -84,6 +84,90 @@
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
   
  +  project name=avalon-framework-api-test
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=runtime/framework/api
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +home nested=runtime/framework/api/target/deliverables/
  +jar name=jars/avalon-framework-api-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  +  /project
  +
  +  project name=avalon-framework-legacy-test
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=runtime/framework/legacy
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- external references --
  +  depend property=gump.resource.mailapi project=javamail
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.log4j project=log4j
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.servletapi project=servletapi
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.geronimo-spec-jms 
project=geronimo-spec-jms
  +noclasspath/
  +  /depend
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +!-- for gump --
  +depend project=avalon-framework-api-testnoclasspath//depend
  +depend project=avalon-logkit-testnoclasspath//depend
  +!-- end for --
  +home nested=runtime/framework/legacy/target/deliverables/
  +jar name=jars/avalon-framework-legacy-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  +  /project
  +
  +  project name=avalon-framework-impl-test
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=runtime/framework/impl
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- external references --
  +  depend property=gump.resource.mailapi project=javamail
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.log4j project=log4j
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.servletapi project=servletapi
  +noclasspath/
  +  /depend
  +  depend property=gump.resource.geronimo-spec-jms 
project=geronimo-spec-jms
  +noclasspath/
  +  /depend
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +!-- for gump --
  +depend project=avalon-framework-api-testnoclasspath//depend
  +depend project=avalon-framework-legacy-testnoclasspath//depend
  +depend project=avalon-logkit-testnoclasspath//depend
  +!-- end for --
  +home nested=runtime/framework/impl/target/deliverables/
  +jar name=jars/avalon-framework-impl-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  +  /project
  +
  +
 redistributable/
   
   /module
  
  
  

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



cvs commit: gump/project avalon-test.xml

2004-08-21 Thread mcconnell
mcconnell2004/08/21 18:03:54

  Modified:project  avalon-test.xml
  Log:
  remove -test refs
  
  Revision  ChangesPath
  1.3   +9 -9  gump/project/avalon-test.xml
  
  Index: avalon-test.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-test.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- avalon-test.xml   22 Aug 2004 00:50:59 -  1.2
  +++ avalon-test.xml   22 Aug 2004 01:03:54 -  1.3
  @@ -29,7 +29,7 @@
 descriptionMagic Test Module/description
 svn repository=avalon-svn dir=trunk//
   
  -  project name=avalon-logkit-test
  +  project name=avalon-logkit
   license name=central/system/license/LICENSE.TXT/
   ant basedir=runtime/logkit
 !-- for magic --
  @@ -84,7 +84,7 @@
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
   
  -  project name=avalon-framework-api-test
  +  project name=avalon-framework-api
   license name=central/system/license/LICENSE.TXT/
   ant basedir=runtime/framework/api
 !-- for magic --
  @@ -100,7 +100,7 @@
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
   
  -  project name=avalon-framework-legacy-test
  +  project name=avalon-framework-legacy
   license name=central/system/license/LICENSE.TXT/
   ant basedir=runtime/framework/legacy
 !-- for magic --
  @@ -124,8 +124,8 @@
   /ant
   depend project=magic runtime=true inherit=runtime/ 
   !-- for gump --
  -depend project=avalon-framework-api-testnoclasspath//depend
  -depend project=avalon-logkit-testnoclasspath//depend
  +depend project=avalon-framework-apinoclasspath//depend
  +depend project=avalon-logkitnoclasspath//depend
   !-- end for --
   home nested=runtime/framework/legacy/target/deliverables/
   jar name=jars/avalon-framework-legacy-@@DATE@@.jar/
  @@ -133,7 +133,7 @@
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
   
  -  project name=avalon-framework-impl-test
  +  project name=avalon-framework-impl
   license name=central/system/license/LICENSE.TXT/
   ant basedir=runtime/framework/impl
 !-- for magic --
  @@ -157,9 +157,9 @@
   /ant
   depend project=magic runtime=true inherit=runtime/ 
   !-- for gump --
  -depend project=avalon-framework-api-testnoclasspath//depend
  -depend project=avalon-framework-legacy-testnoclasspath//depend
  -depend project=avalon-logkit-testnoclasspath//depend
  +depend project=avalon-framework-apinoclasspath//depend
  +depend project=avalon-framework-legacynoclasspath//depend
  +depend project=avalon-logkitnoclasspath//depend
   !-- end for --
   home nested=runtime/framework/impl/target/deliverables/
   jar name=jars/avalon-framework-impl-@@DATE@@.jar/
  
  
  

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



cvs commit: gump/profile gump.xml

2004-08-21 Thread mcconnell
mcconnell2004/08/21 18:05:08

  Modified:profile  gump.xml
  Log:
  comment out cvs build of logkit
  
  Revision  ChangesPath
  1.382 +1 -1  gump/profile/gump.xml
  
  Index: gump.xml
  ===
  RCS file: /home/cvs/gump/profile/gump.xml,v
  retrieving revision 1.381
  retrieving revision 1.382
  diff -u -r1.381 -r1.382
  --- gump.xml  22 Aug 2004 00:45:57 -  1.381
  +++ gump.xml  22 Aug 2004 01:05:08 -  1.382
  @@ -26,7 +26,7 @@
 module href=project/avalon.xml/
 module href=project/avalon-components.xml/
 module href=project/avalon-excalibur.xml/
  -  module href=project/avalon-logkit.xml/
  +  !-- module href=project/avalon-logkit.xml/ -- !-- handled in avalon-test 
--
 module href=project/avalon-sandbox.xml/
 module href=project/avalon-site.xml/
 module href=project/avalon-phoenix.xml/
  
  
  

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



cvs commit: gump/project avalon.xml

2004-08-21 Thread mcconnell
mcconnell2004/08/21 18:13:56

  Modified:project  avalon.xml
  Log:
  remove cvs definition of framework and link to svn buillds in avalon-test
  
  Revision  ChangesPath
  1.51  +12 -2 gump/project/avalon.xml
  
  Index: avalon.xml
  ===
  RCS file: /home/cvs/gump/project/avalon.xml,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- avalon.xml26 Apr 2004 05:22:57 -  1.50
  +++ avalon.xml22 Aug 2004 01:13:55 -  1.51
  @@ -23,13 +23,22 @@
   /description
   cvs repository=avalon/
   
  +project name=avalon-framework
  +   depend runtime=true project=avalon-framework-api runtime=true 
id=api/
  +   depend runtime=true project=avalon-framework-legacy runtime=true 
id=legacy/
  +   depend runtime=true project=avalon-framework-impl runtime=true 
id=impl/
  +/project
  +
  +!--
   project name=avalon
   !-- just make sure avalon-framework has been built --
   depend project=avalon-frameworknoclasspath//depend
   !-- only publish the api jar --
   jar name=framework/api/target/avalon-framework-api-@@DATE@@.jar/
   /project
  -
  +--
  +
  +!--
   project name=avalon-framework
   packageorg.apache.avalon.framework/package
   ant target=dist basedir=framework
  @@ -58,7 +67,8 @@
   
   nag to=[EMAIL PROTECTED] from=Gump Integration Build lt;[EMAIL 
PROTECTED]gt;/
   /project
  -
  +--
  +
   project name=avalon-logging-api
   packageorg.apache.avalon.logging/package
   
  
  
  

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



cvs commit: gump/project avalon-test.xml avalon.xml

2004-08-21 Thread mcconnell
mcconnell2004/08/21 18:39:33

  Modified:project  avalon-test.xml avalon.xml
  Log:
  move some of the utilities into the test project
  
  Revision  ChangesPath
  1.4   +82 -0 gump/project/avalon-test.xml
  
  Index: avalon-test.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-test.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- avalon-test.xml   22 Aug 2004 01:03:54 -  1.3
  +++ avalon-test.xml   22 Aug 2004 01:39:32 -  1.4
  @@ -167,6 +167,88 @@
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
   
  +  project name=avalon-util-exception
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=runtime/util/exception
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +home nested=runtime/util/exception/target/deliverables/
  +jar name=jars/avalon-util-exception-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  +  /project
  +
  +  project name=avalon-util-env
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=runtime/util/env
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +home nested=runtime/util/env/target/deliverables/
  +jar name=jars/avalon-util-env-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  +  /project
  +
  +  project name=avalon-util-i18n
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=runtime/util/i18n
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +home nested=runtime/util/i18n/target/deliverables/
  +jar name=jars/avalon-util-i18n-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  +  /project
  +
  +  project name=avalon-util-criteria
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=runtime/util/criteria
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +home nested=runtime/util/criteria/target/deliverables/
  +jar name=jars/avalon-util-criteria-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  +  /project
  +
  +  project name=avalon-util-defaults
  +license name=central/system/license/LICENSE.TXT/
  +ant basedir=runtime/util/defaults
  +  !-- for magic --
  +  property name=build.sysclasspath value=last/ 
  +  property name=magic.home reference=home project=magic/
  +  property name=gump.signature value=@@DATE@@/
  +  !-- end for --
  +/ant
  +depend project=magic runtime=true inherit=runtime/ 
  +!-- for gump --
  +depend project=avalon-util-envnoclasspath//depend
  +!-- end for --
  +home nested=runtime/util/defaults/target/deliverables/
  +jar name=jars/avalon-util-defaults-@@DATE@@.jar/
  +nag to=[EMAIL PROTECTED]
  +   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  +  /project
   
 redistributable/
   
  
  
  
  1.52  +10 -0 gump/project/avalon.xml
  
  Index: avalon.xml
  ===
  RCS file: /home/cvs/gump/project/avalon.xml,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- avalon.xml22 Aug 2004 01:13:55 -  1.51
  +++ avalon.xml22 Aug 2004 01:39:32 -  1.52
  @@ -724,6 +724,7 @@
   nag to=[EMAIL PROTECTED] from=Gump Integration Build lt;[EMAIL 
PROTECTED]gt;/
   /project
   
  +!--
   project name=avalon-util-criteria
   packageorg.apache.avalon.util.criteria/package
   ant basedir=util/criteria target=jar
  @@ -739,7 +740,9 @@
   junitreport nested=util/criteria/target/test-reports/
   nag to=[EMAIL PROTECTED] from=Gump Integration Build lt;[EMAIL 
PROTECTED]gt;/
   /project
  +--
   
  +!--
   project name=avalon-util-defaults

cvs commit: gump/project avalon-metro.xml avalon-test.xml

2004-08-21 Thread mcconnell
mcconnell2004/08/21 19:24:26

  Modified:project  avalon-test.xml
  Added:   project  avalon-metro.xml
  Log:
  separate avalon core on svn from avalon metro content
  
  Revision  ChangesPath
  1.5   +0 -109gump/project/avalon-test.xml
  
  Index: avalon-test.xml
  ===
  RCS file: /home/cvs/gump/project/avalon-test.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- avalon-test.xml   22 Aug 2004 01:39:32 -  1.4
  +++ avalon-test.xml   22 Aug 2004 02:24:26 -  1.5
  @@ -58,32 +58,6 @@
  from=Magic Integration lt;[EMAIL PROTECTED]gt;/
 /project
   
  -  !--
  -  The following definition is generated - PLEASE NO NOT EDIT. It is 
  -  included here as a test of a generated project defintion.
  -  --
  -
  -  project name=avalon-tools-magic
  -license name=central/system/license/LICENSE.TXT/
  -ant basedir=tools/magic
  -  !-- for magic --
  -  property name=magic.home reference=home project=magic/
  -  property name=gump.signature value=@@DATE@@/
  -  property name=build.sysclasspath value=last/
  -  !-- external references --
  -  depend property=gump.resource.ant project=ant id=ant/
  -  depend property=gump.resource.junit project=junit/
  -  depend property=gump.resource.ant-junit project=ant id=junit/
  -  depend property=gump.resource.ant-nodeps project=ant id=nodeps/
  -  !-- end for --
  -/ant
  -depend project=magic runtime=true inherit=runtime/ 
  -home nested=tools/magic/target/deliverables/
  -jar name=jars/avalon-tools-magic-@@DATE@@.jar/
  -nag to=[EMAIL PROTECTED]
  -   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  -  /project
  -
 project name=avalon-framework-api
   license name=central/system/license/LICENSE.TXT/
   ant basedir=runtime/framework/api
  @@ -163,89 +137,6 @@
   !-- end for --
   home nested=runtime/framework/impl/target/deliverables/
   jar name=jars/avalon-framework-impl-@@DATE@@.jar/
  -nag to=[EMAIL PROTECTED]
  -   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  -  /project
  -
  -  project name=avalon-util-exception
  -license name=central/system/license/LICENSE.TXT/
  -ant basedir=runtime/util/exception
  -  !-- for magic --
  -  property name=build.sysclasspath value=last/ 
  -  property name=magic.home reference=home project=magic/
  -  property name=gump.signature value=@@DATE@@/
  -  !-- end for --
  -/ant
  -depend project=magic runtime=true inherit=runtime/ 
  -home nested=runtime/util/exception/target/deliverables/
  -jar name=jars/avalon-util-exception-@@DATE@@.jar/
  -nag to=[EMAIL PROTECTED]
  -   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  -  /project
  -
  -  project name=avalon-util-env
  -license name=central/system/license/LICENSE.TXT/
  -ant basedir=runtime/util/env
  -  !-- for magic --
  -  property name=build.sysclasspath value=last/ 
  -  property name=magic.home reference=home project=magic/
  -  property name=gump.signature value=@@DATE@@/
  -  !-- end for --
  -/ant
  -depend project=magic runtime=true inherit=runtime/ 
  -home nested=runtime/util/env/target/deliverables/
  -jar name=jars/avalon-util-env-@@DATE@@.jar/
  -nag to=[EMAIL PROTECTED]
  -   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  -  /project
  -
  -  project name=avalon-util-i18n
  -license name=central/system/license/LICENSE.TXT/
  -ant basedir=runtime/util/i18n
  -  !-- for magic --
  -  property name=build.sysclasspath value=last/ 
  -  property name=magic.home reference=home project=magic/
  -  property name=gump.signature value=@@DATE@@/
  -  !-- end for --
  -/ant
  -depend project=magic runtime=true inherit=runtime/ 
  -home nested=runtime/util/i18n/target/deliverables/
  -jar name=jars/avalon-util-i18n-@@DATE@@.jar/
  -nag to=[EMAIL PROTECTED]
  -   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  -  /project
  -
  -  project name=avalon-util-criteria
  -license name=central/system/license/LICENSE.TXT/
  -ant basedir=runtime/util/criteria
  -  !-- for magic --
  -  property name=build.sysclasspath value=last/ 
  -  property name=magic.home reference=home project=magic/
  -  property name=gump.signature value=@@DATE@@/
  -  !-- end for --
  -/ant
  -depend project=magic runtime=true inherit=runtime/ 
  -home nested=runtime/util/criteria/target/deliverables/
  -jar name=jars/avalon-util-criteria-@@DATE@@.jar/
  -nag to=[EMAIL PROTECTED]
  -   from=Magic Integration lt;[EMAIL PROTECTED]gt;/
  -  /project
  -
  -  project name=avalon-util-defaults
  -license name=central/system/license/LICENSE.TXT/
  -ant basedir=runtime/util/defaults
  -  !-- for magic --
  -  property name=build.sysclasspath

  1   2   3   >