1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
3
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
xmlns:context="http://www.springframework.org/schema/context"
|
5
|
xmlns:tx="http://www.springframework.org/schema/tx"
|
6
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
7
|
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
|
8
|
http://www.springframework.org/schema/context
|
9
|
http://www.springframework.org/schema/context/spring-context-4.3.xsd
|
10
|
http://www.springframework.org/schema/tx
|
11
|
http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">
|
12
|
|
13
|
<!-- CURRENTLY we do not have tests testing cdmlib-test functionality
|
14
|
but only offer functionality for testing other packages.
|
15
|
Therefore this configuration is NOT IN USE. -->
|
16
|
|
17
|
<!-- requires at least spring 2.5.4
|
18
|
<context:property-override location="classpath:eu/etaxonomy/cdm/persistence/override.properties"/>
|
19
|
-->
|
20
|
|
21
|
<bean id="dataSource" class="org.unitils.database.UnitilsDataSourceFactoryBean"/>
|
22
|
|
23
|
<import resource="classpath:/eu/etaxonomy/cdm/persistence_test.xml" />
|
24
|
|
25
|
<import resource="classpath:/eu/etaxonomy/cdm/applicationContext-test.common.xml" />
|
26
|
</beans>
|