Files
DSpace/dspace/config/spring/api/metadata-extractors.xml
2018-08-26 10:42:14 +02:00

31 lines
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<bean id="bibtex" class="org.dspace.submit.extraction.MetadataExtractor">
<property name="dataLoader" ref="bibTeXDataLoader"/>
<property name="configurationService" ref="org.dspace.services.ConfigurationService"/>
<property name="extensions">
<list>
<value>bibtex</value>
<value>bib</value>
</list>
</property>
</bean>
<!-- <bean id="grobid" class="org.dspace.submit.extraction.MetadataExtractor">
<property name="dataLoader" ref="grobidDataLoader"/>
<property name="configurationService" ref="org.dspace.services.ConfigurationService"/>
<property name="extensions">
<list>
<value>pdf</value>
</list>
</property>
</bean>
-->
</beans>