Re: svn commit: r1637817 - in /xmlgraphics/fop/trunk: src/foschema/ src/java/org/apache/fop/fonts/ src/java/org/apache/fop/fonts/autodetect/ src/java/org/apache/fop/fonts/type1/ src/java/org/apache/fo

2014-11-11 Thread Glenn Adams
Your commit broke the build (junit). Getting an NPE at highlight diff below
when fontUris is null when running

Testsuite: org.apache.fop.BasicTranscoderTestSuite
Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 2.131 sec
Testcase: testGenericPDFTranscoder took 1.578 sec
Caused an ERROR
Error while setting up PDFDocumentGraphics2D
Enclosed Exception:
null
org.apache.batik.transcoder.TranscoderException: Error while setting up
PDFDocumentGraphics2D
Enclosed Exception:
null
 at org.apache.fop.svg.PDFTranscoder.transcode(PDFTranscoder.java:137)
at org.apache.batik.transcoder.XMLAbstractTranscoder.transcode(Unknown
Source)
at org.apache.batik.transcoder.SVGAbstractTranscoder.transcode(Unknown
Source)
at
org.apache.fop.AbstractBasicTranscoderTest.testGenericPDFTranscoder(AbstractBasicTranscoderTest.java:71)

@@ -150,7 +166,7 @@ public class EmbedFontInfo implements Se
  * @return true if the font is embedded, false if it is referenced.
  */
 public boolean isEmbedded() {
-if (embedURI == null) {
+if (fontUris.getEmbed() == null) {
 return false;
 } else {
 return this.embedded;


On Mon, Nov 10, 2014 at 6:18 PM, lberna...@apache.org wrote:

 Author: lbernardo
 Date: Mon Nov 10 11:18:43 2014
 New Revision: 1637817

 URL: http://svn.apache.org/r1637817
 Log:
 FOP-2424: Allow for type1 afm/pfm files to be in a different path than the
 pfb file

 Added:
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/FontUris.java
  (with props)
 Modified:
 xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfigurator.java
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/EmbedFontInfo.java
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/FontLoader.java
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/LazyFont.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/autodetect/FontInfoFinder.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/type1/Type1FontLoader.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/render/java2d/ConfiguredFontCollection.java

 xmlgraphics/fop/trunk/test/java/org/apache/fop/fonts/DejaVuLGCSerifTestCase.java

 xmlgraphics/fop/trunk/test/java/org/apache/fop/fonts/EmbedFontInfoTestCase.java

 Modified: xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd
 URL:
 http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd?rev=1637817r1=1637816r2=1637817view=diff

 ==
 --- xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd (original)
 +++ xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd Mon Nov 10
 11:18:43 2014
 @@ -283,6 +283,8 @@
  /xsd:sequence
  xsd:attribute name=metrics-url type=xsd:anyURI use=optional/
  xsd:attribute name=embed-url type=xsd:anyURI use=optional/
 +xsd:attribute name=embed-url-afm type=xsd:anyURI use=optional/
 +xsd:attribute name=embed-url-pfm type=xsd:anyURI use=optional/
  xsd:attribute name=sub-font type=xsd:string use=optional/
  xsd:attribute name=embedding-mode use=optional
xsd:simpleType

 Modified:
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
 URL:
 http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java?rev=1637817r1=1637816r2=1637817view=diff

 ==
 ---
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
 (original)
 +++
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
 Mon Nov 10 11:18:43 2014
 @@ -108,11 +108,13 @@ public final class DefaultFontConfig imp
  strict);
  continue;
  }
 -Font font = new Font(fontCfg.getAttribute(metrics-url,
 null), embed,
 -fontCfg.getAttribute(sub-font, null),
 fontCfg.getAttributeAsBoolean(
 -kerning, true),
 fontCfg.getAttributeAsBoolean(advanced, true),
 -fontCfg.getAttribute(encoding-mode,
 EncodingMode.AUTO.getName()),
 -fontCfg.getAttribute(embedding-mode,
 EncodingMode.AUTO.getName()));
 +Font font = new Font(fontCfg.getAttribute(metrics-url,
 null), embed, fontCfg.getAttribute(
 +embed-url-afm, null),
 fontCfg.getAttribute(embed-url-pfm, null),
 +fontCfg.getAttribute(sub-font, null),
 +fontCfg.getAttributeAsBoolean(kerning, true),
 fontCfg.getAttributeAsBoolean(
 +advanced, true),
 fontCfg.getAttribute(encoding-mode,
 +EncodingMode.AUTO.getName()),
 

Re: svn commit: r1637817 - in /xmlgraphics/fop/trunk: src/foschema/ src/java/org/apache/fop/fonts/ src/java/org/apache/fop/fonts/autodetect/ src/java/org/apache/fop/fonts/type1/ src/java/org/apache/fo

2014-11-11 Thread Glenn Adams
I fixed the problem below, but still getting other NPEs, so it looks pretty
broken. I'm reverting your commit. I guess you didn't run junit before
doing the commit.

On Tue, Nov 11, 2014 at 2:59 PM, Glenn Adams gl...@skynav.com wrote:

 Your commit broke the build (junit). Getting an NPE at highlight diff
 below when fontUris is null when running

 Testsuite: org.apache.fop.BasicTranscoderTestSuite
 Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 2.131 sec
 Testcase: testGenericPDFTranscoder took 1.578 sec
 Caused an ERROR
 Error while setting up PDFDocumentGraphics2D
 Enclosed Exception:
 null
 org.apache.batik.transcoder.TranscoderException: Error while setting up
 PDFDocumentGraphics2D
 Enclosed Exception:
 null
  at org.apache.fop.svg.PDFTranscoder.transcode(PDFTranscoder.java:137)
 at org.apache.batik.transcoder.XMLAbstractTranscoder.transcode(Unknown
 Source)
 at org.apache.batik.transcoder.SVGAbstractTranscoder.transcode(Unknown
 Source)
 at
 org.apache.fop.AbstractBasicTranscoderTest.testGenericPDFTranscoder(AbstractBasicTranscoderTest.java:71)

 @@ -150,7 +166,7 @@ public class EmbedFontInfo implements Se
   * @return true if the font is embedded, false if it is referenced.
   */
  public boolean isEmbedded() {
 -if (embedURI == null) {
 +if (fontUris.getEmbed() == null) {
  return false;
  } else {
  return this.embedded;


 On Mon, Nov 10, 2014 at 6:18 PM, lberna...@apache.org wrote:

 Author: lbernardo
 Date: Mon Nov 10 11:18:43 2014
 New Revision: 1637817

 URL: http://svn.apache.org/r1637817
 Log:
 FOP-2424: Allow for type1 afm/pfm files to be in a different path than
 the pfb file

 Added:
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/FontUris.java
  (with props)
 Modified:
 xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfigurator.java
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/EmbedFontInfo.java
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/FontLoader.java
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/LazyFont.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/autodetect/FontInfoFinder.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/type1/Type1FontLoader.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/render/java2d/ConfiguredFontCollection.java

 xmlgraphics/fop/trunk/test/java/org/apache/fop/fonts/DejaVuLGCSerifTestCase.java

 xmlgraphics/fop/trunk/test/java/org/apache/fop/fonts/EmbedFontInfoTestCase.java

 Modified: xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd
 URL:
 http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd?rev=1637817r1=1637816r2=1637817view=diff

 ==
 --- xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd (original)
 +++ xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd Mon Nov 10
 11:18:43 2014
 @@ -283,6 +283,8 @@
  /xsd:sequence
  xsd:attribute name=metrics-url type=xsd:anyURI use=optional/
  xsd:attribute name=embed-url type=xsd:anyURI use=optional/
 +xsd:attribute name=embed-url-afm type=xsd:anyURI
 use=optional/
 +xsd:attribute name=embed-url-pfm type=xsd:anyURI
 use=optional/
  xsd:attribute name=sub-font type=xsd:string use=optional/
  xsd:attribute name=embedding-mode use=optional
xsd:simpleType

 Modified:
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
 URL:
 http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java?rev=1637817r1=1637816r2=1637817view=diff

 ==
 ---
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
 (original)
 +++
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
 Mon Nov 10 11:18:43 2014
 @@ -108,11 +108,13 @@ public final class DefaultFontConfig imp
  strict);
  continue;
  }
 -Font font = new Font(fontCfg.getAttribute(metrics-url,
 null), embed,
 -fontCfg.getAttribute(sub-font, null),
 fontCfg.getAttributeAsBoolean(
 -kerning, true),
 fontCfg.getAttributeAsBoolean(advanced, true),
 -fontCfg.getAttribute(encoding-mode,
 EncodingMode.AUTO.getName()),
 -fontCfg.getAttribute(embedding-mode,
 EncodingMode.AUTO.getName()));
 +Font font = new Font(fontCfg.getAttribute(metrics-url,
 null), embed, fontCfg.getAttribute(
 +embed-url-afm, null),
 fontCfg.getAttribute(embed-url-pfm, null),
 +fontCfg.getAttribute(sub-font, null),
 + 

Re: svn commit: r1637817 - in /xmlgraphics/fop/trunk: src/foschema/ src/java/org/apache/fop/fonts/ src/java/org/apache/fop/fonts/autodetect/ src/java/org/apache/fop/fonts/type1/ src/java/org/apache/fo

2014-11-11 Thread Luis Bernardo


You need to remove the cache (the .fop directory under your home).

On 11/11/14, 8:23 AM, Glenn Adams wrote:
I fixed the problem below, but still getting other NPEs, so it looks 
pretty broken. I'm reverting your commit. I guess you didn't run junit 
before doing the commit.


On Tue, Nov 11, 2014 at 2:59 PM, Glenn Adams gl...@skynav.com 
mailto:gl...@skynav.com wrote:


Your commit broke the build (junit). Getting an NPE at highlight
diff below when fontUris is null when running

Testsuite: org.apache.fop.BasicTranscoderTestSuite
Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed:
2.131 sec
Testcase: testGenericPDFTranscoder took 1.578 sec
Caused an ERROR
Error while setting up PDFDocumentGraphics2D
Enclosed Exception:
null
org.apache.batik.transcoder.TranscoderException: Error while
setting up PDFDocumentGraphics2D
Enclosed Exception:
null
at org.apache.fop.svg.PDFTranscoder.transcode(PDFTranscoder.java:137)
at
org.apache.batik.transcoder.XMLAbstractTranscoder.transcode(Unknown Source)
at
org.apache.batik.transcoder.SVGAbstractTranscoder.transcode(Unknown Source)
at

org.apache.fop.AbstractBasicTranscoderTest.testGenericPDFTranscoder(AbstractBasicTranscoderTest.java:71)


@@ -150,7 +166,7 @@ public class EmbedFontInfo implements Se
* @return true if the font is embedded, false if it is referenced.
*/
   public boolean isEmbedded() {
-   if (embedURI == null) {
+   if (fontUris.getEmbed() == null) {
   return false;
   } else {
   return this.embedded;


On Mon, Nov 10, 2014 at 6:18 PM, lberna...@apache.org
mailto:lberna...@apache.org wrote:

Author: lbernardo
Date: Mon Nov 10 11:18:43 2014
New Revision: 1637817

URL: http://svn.apache.org/r1637817
Log:
FOP-2424: Allow for type1 afm/pfm files to be in a different
path than the pfb file

Added:
xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/FontUris.java
 (with props)
Modified:
xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd

xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java

xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfigurator.java
xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/EmbedFontInfo.java
xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/FontLoader.java
xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/LazyFont.java

xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/autodetect/FontInfoFinder.java

xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/type1/Type1FontLoader.java

xmlgraphics/fop/trunk/src/java/org/apache/fop/render/java2d/ConfiguredFontCollection.java

xmlgraphics/fop/trunk/test/java/org/apache/fop/fonts/DejaVuLGCSerifTestCase.java

xmlgraphics/fop/trunk/test/java/org/apache/fop/fonts/EmbedFontInfoTestCase.java

Modified: xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd
URL:

http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd?rev=1637817r1=1637816r2=1637817view=diff

==
--- xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd
(original)
+++ xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd
Mon Nov 10 11:18:43 2014
@@ -283,6 +283,8 @@
 /xsd:sequence
 xsd:attribute name=metrics-url type=xsd:anyURI
use=optional/
 xsd:attribute name=embed-url type=xsd:anyURI
use=optional/
+xsd:attribute name=embed-url-afm type=xsd:anyURI
use=optional/
+xsd:attribute name=embed-url-pfm type=xsd:anyURI
use=optional/
 xsd:attribute name=sub-font type=xsd:string
use=optional/
 xsd:attribute name=embedding-mode use=optional
   xsd:simpleType

Modified:

xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
URL:

http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java?rev=1637817r1=1637816r2=1637817view=diff

==
---

xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
(original)
+++

xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
Mon Nov 10 11:18:43 2014
@@ -108,11 +108,13 @@ public final class DefaultFontConfig imp
 strict);
 continue;
 }
-Font font = new
Font(fontCfg.getAttribute(metrics-url, 

Re: svn commit: r1637817 - in /xmlgraphics/fop/trunk: src/foschema/ src/java/org/apache/fop/fonts/ src/java/org/apache/fop/fonts/autodetect/ src/java/org/apache/fop/fonts/type1/ src/java/org/apache/fo

2014-11-11 Thread Glenn Adams
maybe, but that isn't good enough; i think you need to code for the case
that the cache wasn't removed, and do the cleanup if it hasn't

On Tue, Nov 11, 2014 at 4:49 PM, Luis Bernardo lmpmberna...@gmail.com
wrote:


 You need to remove the cache (the .fop directory under your home).


 On 11/11/14, 8:23 AM, Glenn Adams wrote:

 I fixed the problem below, but still getting other NPEs, so it looks
 pretty broken. I'm reverting your commit. I guess you didn't run junit
 before doing the commit.

 On Tue, Nov 11, 2014 at 2:59 PM, Glenn Adams gl...@skynav.com wrote:

 Your commit broke the build (junit). Getting an NPE at highlight diff
 below when fontUris is null when running

 Testsuite: org.apache.fop.BasicTranscoderTestSuite
 Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 2.131 sec
 Testcase: testGenericPDFTranscoder took 1.578 sec
 Caused an ERROR
 Error while setting up PDFDocumentGraphics2D
 Enclosed Exception:
 null
 org.apache.batik.transcoder.TranscoderException: Error while setting up
 PDFDocumentGraphics2D
 Enclosed Exception:
 null
  at
 org.apache.fop.svg.PDFTranscoder.transcode(PDFTranscoder.java:137)
 at org.apache.batik.transcoder.XMLAbstractTranscoder.transcode(Unknown
 Source)
 at org.apache.batik.transcoder.SVGAbstractTranscoder.transcode(Unknown
 Source)
 at
 org.apache.fop.AbstractBasicTranscoderTest.testGenericPDFTranscoder(AbstractBasicTranscoderTest.java:71)

  @@ -150,7 +166,7 @@ public class EmbedFontInfo implements Se
   * @return true if the font is embedded, false if it is referenced.
   */
  public boolean isEmbedded() {
 -if (embedURI == null) {
 +if (fontUris.getEmbed() == null) {
  return false;
  } else {
  return this.embedded;


 On Mon, Nov 10, 2014 at 6:18 PM, lberna...@apache.org wrote:

 Author: lbernardo
 Date: Mon Nov 10 11:18:43 2014
 New Revision: 1637817

 URL: http://svn.apache.org/r1637817
 Log:
 FOP-2424: Allow for type1 afm/pfm files to be in a different path than
 the pfb file

 Added:
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/FontUris.java
  (with props)
 Modified:
 xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfigurator.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/EmbedFontInfo.java
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/FontLoader.java
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/LazyFont.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/autodetect/FontInfoFinder.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/type1/Type1FontLoader.java

 xmlgraphics/fop/trunk/src/java/org/apache/fop/render/java2d/ConfiguredFontCollection.java

 xmlgraphics/fop/trunk/test/java/org/apache/fop/fonts/DejaVuLGCSerifTestCase.java

 xmlgraphics/fop/trunk/test/java/org/apache/fop/fonts/EmbedFontInfoTestCase.java

 Modified: xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd
 URL:
 http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd?rev=1637817r1=1637816r2=1637817view=diff

 ==
 --- xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd (original)
 +++ xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd Mon Nov 10
 11:18:43 2014
 @@ -283,6 +283,8 @@
  /xsd:sequence
  xsd:attribute name=metrics-url type=xsd:anyURI use=optional/
  xsd:attribute name=embed-url type=xsd:anyURI use=optional/
 +xsd:attribute name=embed-url-afm type=xsd:anyURI
 use=optional/
 +xsd:attribute name=embed-url-pfm type=xsd:anyURI
 use=optional/
  xsd:attribute name=sub-font type=xsd:string use=optional/
  xsd:attribute name=embedding-mode use=optional
xsd:simpleType

 Modified:
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
 URL:
 http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java?rev=1637817r1=1637816r2=1637817view=diff

 ==
 ---
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
 (original)
 +++
 xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/DefaultFontConfig.java
 Mon Nov 10 11:18:43 2014
 @@ -108,11 +108,13 @@ public final class DefaultFontConfig imp
  strict);
  continue;
  }
 -Font font = new
 Font(fontCfg.getAttribute(metrics-url, null), embed,
 -fontCfg.getAttribute(sub-font, null),
 fontCfg.getAttributeAsBoolean(
 -kerning, true),
 fontCfg.getAttributeAsBoolean(advanced, true),
 -fontCfg.getAttribute(encoding-mode,
 EncodingMode.AUTO.getName()),
 -

Jenkins build is back to normal : xmlgraphics-fop #48

2014-11-11 Thread Apache Jenkins Server
See https://builds.apache.org/job/xmlgraphics-fop/48/



Re: jenkins

2014-11-11 Thread Chris Bowditch

Hi SImon,

The e-mails take a few hours/days to arrive because I'm manually 
approving them as the list moderator. I've sent an e-mail to the address 
you cited, but I get no response.


Thanks,

Chris

On 10/11/2014 17:50, Simon Steiner wrote:

Hi,

Seems to be working but emails take hours to arrive in my inbox, let me know if 
its just me.

Thanks

-Original Message-
From: Simon Steiner [mailto:simonsteiner1...@gmail.com]
Sent: 10 November 2014 12:18
To: fop-dev@xmlgraphics.apache.org
Subject: jenkins

Hi,

To get Jenkins to email the list with failures

A 'moderator' has to email 
fop-dev-allow-subscribe-jenkins=builds.apache@xmlgraphics.apache.org

Who is a moderator and can they do this?

http://wiki.apache.org/general/Jenkins#How_do_I_allow_Jenkins_to_mail_to_my_project.27s_.22dev.22_list.3F

Thanks








[GUMP@vmgump]: Project xml-fop-test (in module xml-fop) failed

2014-11-11 Thread FOP Gump Nightly Build
To whom it may engage...

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

Project xml-fop-test has an issue affecting its community integration.
This issue affects 1 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- xml-fop-test :  XSL-FO (Formatting Objects) processor


Full details are available at:
http://vmgump.apache.org/gump/public/xml-fop/xml-fop-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on checkstyle exists, no need to add for property 
checkstyle.location.
 -INFO- Failed with reason build failed
 -INFO- Project Reports in: 
/srv/gump/public/workspace/xml-fop/build/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/xml-fop/xml-fop-test/gump_work/build_xml-fop_xml-fop-test.html
Work Name: build_xml-fop_xml-fop-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 3 mins 18 secs
Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only -Dant.build.clonevm=true 
-Xbootclasspath/p:/srv/gump/public/workspace/xml-xalan/build/xalan-unbundled.jar:/srv/gump/public/workspace/xml-xalan/build/serializer.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar
 org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dcheckstyle.location=/srv/gump/public/workspace/checkstyle/target/checkstyle-6.1-SNAPSHOT.jar
 gump-test 
[Working Directory: /srv/gump/public/workspace/xml-fop]
CLASSPATH: 
/usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/xml-fop/build/classes:/srv/gump/public/workspace/xml-fop/build/codegen-classes:/srv/gump/public/workspace/xml-fop/build/test-classes:/srv/gump/public/workspace/xml-fop/lib/build/asm-3.1.jar:/srv/gump/public/workspace/xml-fop/lib/build/mockito-core-1.8.5.jar:/srv/gump/public/workspace/xml-fop/lib/build/hamcrest.core-1.1.0.jar:/srv/gump/public/workspace/xml-fop/lib/build/objenesis-1.0.0.jar:/srv/gump/public/workspace/xml-fop/lib/build/qdox-1.12.jar:/srv/gump/public/workspace/xml-fop/lib/fontbox-1.8.5.jar:/srv/gump/public/workspace/checkstyle/target/checkstyle-6.1-SNAPSHOT.jar:/srv/gump/packages/antlr/antlr-3.1.3.jar:/srv/gump/public/workspace/apache-commons/beanutils/dist/commons-beanutils-2014.jar:/srv/gump/public/workspace/apache-commons/cli/target/commons-cli-1.3-SNAPSHOT.jar:/srv/gump/packages/commons-collections3/commons-collections-3.2.1.jar:/srv/gump/public/workspace/apache-commons/exec/target/com
 
mons-exec-1.3.1-SNAPSHOT.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-2014.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-2014.jar:/srv/gump/public/workspace/apache-commons/validator/dist/commons-validator-2014.jar:/srv/gump/packages/guava/guava-18.0.jar:/srv/gump/public/workspace/xml-fop/build/fop.jar:/srv/gump/public/workspace/xml-fop/build/fop-sandbox.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/packages/apache-attic/avalon-framework-
 
api-4.3.jar:/srv/gump/packages/apache-attic/avalon-framework-impl-4.3.jar:/srv/gump/public/workspace/apache-commons/io/target/commons-io-2.5-SNAPSHOT.jar:/srv/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/xml-batik/batik-2014/batik-slideshow.jar:/srv/gump/public/workspace/xml-batik/batik-2014/batik-svgpp.jar:/srv/gump/public/workspace/xml-batik/batik-2014/lib/batik-anim.jar:/srv/gump/public/workspace/xml-batik/batik-2014/lib/batik-awt-util.jar:/srv/gump/public/workspace/xml-batik/batik-2014/lib/batik-bridge.jar:/srv/gump/public/workspace/xml-batik/batik-2014/lib/batik-codec.jar:/srv/gump/public/workspace/xml-batik/batik-2014/lib/batik-css.jar:/srv/gump/public/workspace/xml-batik/batik-2014/lib/batik-dom.jar:/srv/gump/public/workspace/xml-batik/batik-2014/lib/batik-ext.jar:/srv/gump/public/workspace/xml-batik/batik-201
 
4/lib/batik-extension.jar:/srv/gump/public/workspace/xml-batik/batik-2014/lib/batik-gui-util.jar:/srv/gump/public

[GUMP@vmgump]: Project xml-fop-test (in module xml-fop) failed

2014-11-11 Thread FOP Gump Nightly Build
To whom it may engage...

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

Project xml-fop-test has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 2 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- xml-fop-test :  XSL-FO (Formatting Objects) processor


Full details are available at:
http://vmgump.apache.org/gump/public/xml-fop/xml-fop-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on checkstyle exists, no need to add for property 
checkstyle.location.
 -INFO- Failed with reason build failed
 -INFO- Project Reports in: 
/srv/gump/public/workspace/xml-fop/build/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/xml-fop/xml-fop-test/gump_work/build_xml-fop_xml-fop-test.html
Work Name: build_xml-fop_xml-fop-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 3 mins 28 secs
Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only -Dant.build.clonevm=true 
-Xbootclasspath/p:/srv/gump/public/workspace/xml-xalan/build/xalan-unbundled.jar:/srv/gump/public/workspace/xml-xalan/build/serializer.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar
 org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dcheckstyle.location=/srv/gump/public/workspace/checkstyle/target/checkstyle-6.1-SNAPSHOT.jar
 gump-test 
[Working Directory: /srv/gump/public/workspace/xml-fop]
CLASSPATH: 
/usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/xml-fop/build/classes:/srv/gump/public/workspace/xml-fop/build/codegen-classes:/srv/gump/public/workspace/xml-fop/build/test-classes:/srv/gump/public/workspace/xml-fop/lib/build/asm-3.1.jar:/srv/gump/public/workspace/xml-fop/lib/build/mockito-core-1.8.5.jar:/srv/gump/public/workspace/xml-fop/lib/build/hamcrest.core-1.1.0.jar:/srv/gump/public/workspace/xml-fop/lib/build/objenesis-1.0.0.jar:/srv/gump/public/workspace/xml-fop/lib/build/qdox-1.12.jar:/srv/gump/public/workspace/xml-fop/lib/fontbox-1.8.5.jar:/srv/gump/public/workspace/checkstyle/target/checkstyle-6.1-SNAPSHOT.jar:/srv/gump/packages/antlr/antlr-3.1.3.jar:/srv/gump/public/workspace/apache-commons/beanutils/dist/commons-beanutils-20141112.jar:/srv/gump/public/workspace/apache-commons/cli/target/commons-cli-1.3-SNAPSHOT.jar:/srv/gump/packages/commons-collections3/commons-collections-3.2.1.jar:/srv/gump/public/workspace/apache-commons/exec/target/com
 
mons-exec-1.3.1-SNAPSHOT.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-20141112.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-20141112.jar:/srv/gump/public/workspace/apache-commons/validator/dist/commons-validator-20141112.jar:/srv/gump/packages/guava/guava-18.0.jar:/srv/gump/public/workspace/xml-fop/build/fop.jar:/srv/gump/public/workspace/xml-fop/build/fop-sandbox.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/packages/apache-attic/avalon-framework-
 
api-4.3.jar:/srv/gump/packages/apache-attic/avalon-framework-impl-4.3.jar:/srv/gump/public/workspace/apache-commons/io/target/commons-io-2.5-SNAPSHOT.jar:/srv/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/xml-batik/batik-20141112/batik-slideshow.jar:/srv/gump/public/workspace/xml-batik/batik-20141112/batik-svgpp.jar:/srv/gump/public/workspace/xml-batik/batik-20141112/lib/batik-anim.jar:/srv/gump/public/workspace/xml-batik/batik-20141112/lib/batik-awt-util.jar:/srv/gump/public/workspace/xml-batik/batik-20141112/lib/batik-bridge.jar:/srv/gump/public/workspace/xml-batik/batik-20141112/lib/batik-codec.jar:/srv/gump/public/workspace/xml-batik/batik-20141112/lib/batik-css.jar:/srv/gump/public/workspace/xml-batik/batik-20141112/lib/batik-dom.jar:/srv/gump/public/workspace/xml-batik/batik-20141112/lib/batik-ext.jar:/srv/gump/public/workspace/xml-batik/batik-201