mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-17 15:03:18 +00:00
31 lines
1.1 KiB
XML
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>
|