RE: [GUMP@brutus]: avalon-tools/avalon-tools-magic failed

2004-07-25 Thread Stephen McConnell


More thinking - I'm starting to suspect that this may be a gump issue.
The error is question is related to the *last* system property supplied
by gump to magic.  All other properties prior to the last property were
handled correctly.  

Does this ring any bells with anyone?

Steve.

http://brutus.apache.org/gump/public/avalon-tools/avalon-tools-magic/gum
p_work/build_avalon-tools_avalon-tools-magic.html


> -Original Message-
> From: Stephen McConnell [mailto:[EMAIL PROTECTED]
> Sent: Sunday, July 25, 2004 13:54
> To: 'Gump code and data'
> Subject: RE: [EMAIL PROTECTED]: avalon-tools/avalon-tools-magic failed
> 
> 
> 
> > -Original Message-
> > From: Stephen McConnell [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, July 25, 2004 13:51
> > To: 'Avalon Developers List'
> > Cc: [EMAIL PROTECTED]
> > Subject: RE: [EMAIL PROTECTED]: avalon-tools/avalon-tools-magic failed
> >
> >
> > I'm guessing that this is a result of the recent changes to handle
> > temporary files as part of the Resource.get(...) operation.
> 
> Actually - no.
> I think this has to be Ant related.
> Steve.
> 
> 
> > Looking at the build log - starting with the command line we can see
> > that the gump.resource.junit property is being supplied by Gump as a
> > system property:
> >
> >
>
-Dgump.resource.junit=/usr/local/gump/public/workspace/dist/junit/junit.
> > jar
> >
> > However, when we look down further in the build when Magic is doing
> its
> > Gump sanity check (under InitializeTask.java), Magic is complaining
> that
> > there is no 'gump.resource.junit' property.
> >
> >   init:
> >[x:init] Executing gump sanity check.
> >...
> >Warning - missing property [gump.resource.junit].
> >
> > As a consequence, magic's cache is not being updated and the end
> result
> > is that the classpath that magic is creating for the compilation run
> > does not include the junit jar file.
> >
> > The actual code that is doing the lookup of the system property is
> here:
> >
> >String gumpKey = "gump.resource." + resource.getKey();
> >
> >//
> >// the value of 'gumpKey' is not set to ' gump.resource.junit'
> >//
> >
> >String path = project.getProperty( gumpKey );
> >if( null != path )
> >{
> >updateCache( project, resource, path );
> >}
> >else
> >{
> >final String warning =
> >  "Warning - missing property [" + gumpKey + "].";
> >project.log( warning );
> >}
> >
> > Now the only way that we would get the log message is if the
> > project.getProperty( gumpKey ) returns a null value - so I'm
wondering
> > if something has changed in Ant.
> >
> > Anyone have any ideas on this?
> >
> > Steve.
> >
> > > -Original Message-
> > > From: Magic Integration [mailto:[EMAIL PROTECTED]
> > > Sent: Sunday, July 25, 2004 08:25
> > > To: [EMAIL PROTECTED]
> > > Subject: [EMAIL PROTECTED]: avalon-tools/avalon-tools-magic failed
> > > Importance: High
> > >
> > > 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 avalon-tools-magic has an issue affecting its community
> > > integration.
> > > This issue affects 1 projects.
> > > Project State : 'Failed', Reason 'Build Failed'
> > > The following are affected:
> > > - avalon-tools-magic :  Avalon Tools.
> > >
> > >
> > > Full details are available at:
> > >
> > >
http://brutus.apache.org/gump/public/avalon-tools/avalon-tools-
> > > magic/index.html
> > >
> > > That said, some snippets follow:
> > >
> > >
> > > The following annotations were provided:
> > >  -DEBUG- Sole jar [avalon-tools-magic-20040725.jar] identifier set
> to
> > > project name
> > >  -DEBUG- Dependency on ant exists, no need to add for property
> > > gump.resource.ant-junit.
> > >  -DEBUG- Dependency on ant exists, no need to add for property
> > > gump.resource.ant-nodeps.
> > >  -DEBUG- Dependency on magic exists, no need to add for property
> > > magic.home.
> > >  -INFO- Enable "verbo

RE: [GUMP@brutus]: avalon-tools/avalon-tools-magic failed

2004-07-25 Thread Stephen McConnell


> -Original Message-
> From: Stephen McConnell [mailto:[EMAIL PROTECTED]
> Sent: Sunday, July 25, 2004 13:51
> To: 'Avalon Developers List'
> Cc: [EMAIL PROTECTED]
> Subject: RE: [EMAIL PROTECTED]: avalon-tools/avalon-tools-magic failed
> 
> 
> I'm guessing that this is a result of the recent changes to handle
> temporary files as part of the Resource.get(...) operation.

Actually - no.  
I think this has to be Ant related.
Steve.


> Looking at the build log - starting with the command line we can see
> that the gump.resource.junit property is being supplied by Gump as a
> system property:
> 
>
-Dgump.resource.junit=/usr/local/gump/public/workspace/dist/junit/junit.
> jar
> 
> However, when we look down further in the build when Magic is doing
its
> Gump sanity check (under InitializeTask.java), Magic is complaining
that
> there is no 'gump.resource.junit' property.
> 
>   init:
>[x:init] Executing gump sanity check.
>...
>Warning - missing property [gump.resource.junit].
> 
> As a consequence, magic's cache is not being updated and the end
result
> is that the classpath that magic is creating for the compilation run
> does not include the junit jar file.
> 
> The actual code that is doing the lookup of the system property is
here:
> 
>String gumpKey = "gump.resource." + resource.getKey();
> 
>//
>// the value of 'gumpKey' is not set to ' gump.resource.junit'
>//
> 
>String path = project.getProperty( gumpKey );
>if( null != path )
>{
>updateCache( project, resource, path );
>}
>else
>{
>final String warning =
>  "Warning - missing property [" + gumpKey + "].";
>project.log( warning );
>}
> 
> Now the only way that we would get the log message is if the
> project.getProperty( gumpKey ) returns a null value - so I'm wondering
> if something has changed in Ant.
> 
> Anyone have any ideas on this?
> 
> Steve.
> 
> > -Original Message-
> > From: Magic Integration [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, July 25, 2004 08:25
> > To: [EMAIL PROTECTED]
> > Subject: [EMAIL PROTECTED]: avalon-tools/avalon-tools-magic failed
> > Importance: High
> >
> > 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 avalon-tools-magic has an issue affecting its community
> > integration.
> > This issue affects 1 projects.
> > Project State : 'Failed', Reason 'Build Failed'
> > The following are affected:
> > - avalon-tools-magic :  Avalon Tools.
> >
> >
> > Full details are available at:
> >
> > http://brutus.apache.org/gump/public/avalon-tools/avalon-tools-
> > magic/index.html
> >
> > That said, some snippets follow:
> >
> >
> > The following annotations were provided:
> >  -DEBUG- Sole jar [avalon-tools-magic-20040725.jar] identifier set
to
> > project name
> >  -DEBUG- Dependency on ant exists, no need to add for property
> > gump.resource.ant-junit.
> >  -DEBUG- Dependency on ant exists, no need to add for property
> > gump.resource.ant-nodeps.
> >  -DEBUG- Dependency on magic exists, no need to add for property
> > magic.home.
> >  -INFO- Enable "verbose" output, due to 1 previous error(s).
> >  -INFO- Failed with reason build failed
> >  -INFO- Enable "debug" output, due to build failure.
> >
> >
> > The following work was performed:
> > http://brutus.apache.org/gump/public/avalon-tools/avalon-tools-
> > magic/gump_work/build_avalon-tools_avalon-tools-magic.html
> > Work Name: build_avalon-tools_avalon-tools-magic (Type: Build)
> > State: Failed
> > Elapsed: 2 secs
> > Command Line: java -Djava.awt.headless=true
org.apache.tools.ant.Main
> -
> > verbose -Dgump.merge=/usr/local/gump/public/gump/work/merge.xml -
> > Dgump.resource.ant-
> > nodeps=/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar
-
> >
>
Dgump.resource.ant=/usr/local/gump/public/workspace/ant/dist/lib/ant.jar
> -
> > Dgump.signature=20040725 -
> > Dmagic.home=/usr/local/gump/public/workspace/avalon-
> > tools/tools/magic/target/20040725 -Dgump.resource.ant-
> > junit=/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar -
> > Dbuild.sysclasspath -
> >
>
Dgump.resource.junit=/usr/local/gump/publ

RE: [GUMP@brutus]: avalon-tools/avalon-tools-magic failed

2004-07-25 Thread Stephen McConnell

I'm guessing that this is a result of the recent changes to handle
temporary files as part of the Resource.get(...) operation.

Looking at the build log - starting with the command line we can see
that the gump.resource.junit property is being supplied by Gump as a
system property:

-Dgump.resource.junit=/usr/local/gump/public/workspace/dist/junit/junit.
jar

However, when we look down further in the build when Magic is doing its
Gump sanity check (under InitializeTask.java), Magic is complaining that
there is no 'gump.resource.junit' property.

  init:
   [x:init] Executing gump sanity check.
   ...
   Warning - missing property [gump.resource.junit].

As a consequence, magic's cache is not being updated and the end result
is that the classpath that magic is creating for the compilation run
does not include the junit jar file.

The actual code that is doing the lookup of the system property is here:

   String gumpKey = "gump.resource." + resource.getKey();

   //
   // the value of 'gumpKey' is not set to ' gump.resource.junit'
   //

   String path = project.getProperty( gumpKey );
   if( null != path )
   {
   updateCache( project, resource, path );
   }
   else
   {
   final String warning = 
 "Warning - missing property [" + gumpKey + "].";
   project.log( warning );
   }

Now the only way that we would get the log message is if the
project.getProperty( gumpKey ) returns a null value - so I'm wondering
if something has changed in Ant.

Anyone have any ideas on this?

Steve.

> -Original Message-
> From: Magic Integration [mailto:[EMAIL PROTECTED]
> Sent: Sunday, July 25, 2004 08:25
> To: [EMAIL PROTECTED]
> Subject: [EMAIL PROTECTED]: avalon-tools/avalon-tools-magic failed
> Importance: High
> 
> 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 avalon-tools-magic has an issue affecting its community
> integration.
> This issue affects 1 projects.
> Project State : 'Failed', Reason 'Build Failed'
> The following are affected:
> - avalon-tools-magic :  Avalon Tools.
> 
> 
> Full details are available at:
> 
> http://brutus.apache.org/gump/public/avalon-tools/avalon-tools-
> magic/index.html
> 
> That said, some snippets follow:
> 
> 
> The following annotations were provided:
>  -DEBUG- Sole jar [avalon-tools-magic-20040725.jar] identifier set to
> project name
>  -DEBUG- Dependency on ant exists, no need to add for property
> gump.resource.ant-junit.
>  -DEBUG- Dependency on ant exists, no need to add for property
> gump.resource.ant-nodeps.
>  -DEBUG- Dependency on magic exists, no need to add for property
> magic.home.
>  -INFO- Enable "verbose" output, due to 1 previous error(s).
>  -INFO- Failed with reason build failed
>  -INFO- Enable "debug" output, due to build failure.
> 
> 
> The following work was performed:
> http://brutus.apache.org/gump/public/avalon-tools/avalon-tools-
> magic/gump_work/build_avalon-tools_avalon-tools-magic.html
> Work Name: build_avalon-tools_avalon-tools-magic (Type: Build)
> State: Failed
> Elapsed: 2 secs
> Command Line: java -Djava.awt.headless=true org.apache.tools.ant.Main
-
> verbose -Dgump.merge=/usr/local/gump/public/gump/work/merge.xml -
> Dgump.resource.ant-
> nodeps=/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar -
>
Dgump.resource.ant=/usr/local/gump/public/workspace/ant/dist/lib/ant.jar
-
> Dgump.signature=20040725 -
> Dmagic.home=/usr/local/gump/public/workspace/avalon-
> tools/tools/magic/target/20040725 -Dgump.resource.ant-
> junit=/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar -
> Dbuild.sysclasspath -
>
Dgump.resource.junit=/usr/local/gump/public/workspace/dist/junit/junit.j
ar
> [Working Directory: /usr/local/gump/public/workspace/avalon-
> tools/tools/magic]
> CLASSPATH :
>
/usr/local/j2sdk1.4.2_04/lib/tools.jar:/usr/local/gump/public/workspace/
av
> alon-tools/tools/magic/target/deliverables/jars/avalon-tools-magic-
>
20040725.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
--

[GUMP@brutus]: xom/xom success

2004-07-25 Thread brutus
To whom it may satisfy...

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

Project xom *no longer* has an issue.
Project State : 'Success'

Full details are available at:

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

That said, some snippets follow:


The following annotations were provided:
 -DEBUG- Sole jar [xom-20040725.jar] identifier set to project name
 -INFO- Enable "verbose" output, due to 1 previous error(s).


The following work was performed:
http://brutus.apache.org/gump/public/xom/xom/gump_work/build_xom_xom.html
Work Name: build_xom_xom (Type: Build)
State: Success
Elapsed: 8 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-xerces2/java/build/xml-apis.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -verbose 
-Dgump.merge=/usr/local/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only 
-Dversion=20040725 jar 
[Working Directory: /usr/local/gump/public/workspace/xom]
CLASSPATH : 
/usr/local/j2sdk1.4.2_04/lib/tools.jar:/usr/local/gump/public/workspace/xom/lib/normalizer.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar-
  [jar] adding entry nu/xom/NodeFactory.class
  [jar] adding entry nu/xom/Nodes.class
  [jar] adding entry nu/xom/NonVerifyingFactory.class
  [jar] adding entry nu/xom/ParentNode.class
  [jar] adding entry nu/xom/ParsingException.class
  [jar] adding entry nu/xom/ProcessingInstruction.class
  [jar] adding entry nu/xom/Serializer.class
  [jar] adding entry nu/xom/Text.class
  [jar] adding entry nu/xom/TextWriter.class
  [jar] adding entry nu/xom/TextWriterFactory.class
  [jar] adding entry nu/xom/UCSWriter.class
  [jar] adding entry nu/xom/URIUtil$ParsedURI.class
  [jar] adding entry nu/xom/URIUtil.class
  [jar] adding entry nu/xom/UnavailableCharacterException.class
  [jar] adding entry nu/xom/UnicodeWriter.class
  [jar] adding entry nu/xom/ValidityException.class
  [jar] adding entry nu/xom/Verifier.class
  [jar] adding entry nu/xom/WellformednessException.class
  [jar] adding entry nu/xom/XML1_0Parser.class
  [jar] adding entry nu/xom/XMLException.class
  [jar] adding entry nu/xom/XOMHandler.class
  [jar] adding entry nu/xom/canonical/Canonicalizer$1.class
  [jar] adding entry nu/xom/canonical/Canonicalizer$AttributeComparator.class
  [jar] adding entry nu/xom/canonical/Canonicalizer$CanonicalXMLSerializer.class
  [jar] adding entry nu/xom/canonical/Canonicalizer.class
  [jar] adding entry nu/xom/characters.dat
  [jar] adding entry nu/xom/converters/DOMConverter.class
  [jar] adding entry nu/xom/converters/SAXConverter.class
  [jar] adding entry nu/xom/tests/XOMTestCase.class
  [jar] adding entry nu/xom/xinclude/BadHTTPHeaderException.class
  [jar] adding entry nu/xom/xinclude/BadHrefAttributeException.class
  [jar] adding entry nu/xom/xinclude/BadParseAttributeException.class
  [jar] adding entry nu/xom/xinclude/EncodingHeuristics.class
  [jar] adding entry nu/xom/xinclude/InclusionLoopException.class
  [jar] adding entry nu/xom/xinclude/MisplacedFallbackException.class
  [jar] adding entry nu/xom/xinclude/NoIncludeLocationException.class
  [jar] adding entry nu/xom/xinclude/XIncludeException.class
  [jar] adding entry nu/xom/xinclude/XIncluder.class
  [jar] adding entry nu/xom/xinclude/XPointer.class
  [jar] adding entry nu/xom/xinclude/XPointerException.class
  [jar] adding entry nu/xom/xinclude/XPointerResourceException.class
  [jar] adding entry nu/xom/xinclude/XPointerSyntaxException.class
  [jar] adding entry nu/xom/xslt/XOMResult.class
  [jar] adding entry nu/xom/xslt/XOMSource.class
  [jar] adding entry nu/xom/xslt/XSLException.class
  [jar] adding entry nu/xom/xslt/XSLTHandler.class
  [jar] adding entry nu/xom/xslt/XSLTransform.class

BUILD SUCCESSFUL
Total time: 7 seconds
-




To subscribe to this information via syndicated feeds:
 RSS: http://brutus.apache.org/gump/public/x