You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2008/02/10 12:48:49 UTC

svn commit: r620262 - /maven/plugins/trunk/maven-changes-plugin/src/site/fml/faq.fml

Author: dennisl
Date: Sun Feb 10 03:48:42 2008
New Revision: 620262

URL: http://svn.apache.org/viewvc?rev=620262&view=rev
Log:
[MCHANGES-75] Setting maxEntries too high causes a SAXParseException

o Document how to get around it.

Modified:
    maven/plugins/trunk/maven-changes-plugin/src/site/fml/faq.fml

Modified: maven/plugins/trunk/maven-changes-plugin/src/site/fml/faq.fml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/site/fml/faq.fml?rev=620262&r1=620261&r2=620262&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changes-plugin/src/site/fml/faq.fml (original)
+++ maven/plugins/trunk/maven-changes-plugin/src/site/fml/faq.fml Sun Feb 10 03:48:42 2008
@@ -29,5 +29,35 @@
        </p>
      </answer>
    </faq>
+
+   <faq id="question2">
+     <question>I get a <code>org.xml.sax.SAXParseException</code>, when generating the JIRA Report. What can do about it?</question>
+     <answer>
+       <p>
+         If you have a lot of entities in the xml file returned from your JIRA
+         installation, you might get an error like this one, when you run the
+         JIRA Report:
+
+         <source>
+org.xml.sax.SAXParseException: Parser has reached the entity expansion limit "64,000" set by the Application.
+         </source>
+
+         If that happens you need to tell the xml parser to use a higher limit.
+         This can be accomplished by adding a command line parameter. In the
+         following example we have set it to double the original value:
+
+         <source>
+mvn -DentityExpansionLimit=128000 ...
+         </source>
+       </p>
+       <p>
+         Unfortunately we have not been able to set this in Java. If someone
+         knows how to do this, then please reopen
+         <a href="http://jira.codehaus.org/browse/MCHANGES-75">MCHANGES-75</a>,
+         and tell us how. It would be nicer is this could be set using a
+         parameter in the pom.
+       </p>
+     </answer>
+   </faq>
  </part>
 </faqs>