remove dependency on stax-utils.jar
------------------------------------
Key: SOLR-871
URL: https://issues.apache.org/jira/browse/SOLR-871
Project: Solr
Issue Type: Improvement
Reporter: Ryan McKinley
Fix For: 1.4
Currently we we use a custom library to make a XMLInputFactory -- we can use
the standard one.
{code}
- inputFactory = BaseXMLInputFactory.newInstance();
+ inputFactory = XMLInputFactory.newInstance();
{code}
This will remove a dependency on stax-util.jar and let people running java6
package solr without any stax libraries.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.