ec3d26aa300780ac04e789c5742ab305da6fddeb
[utils] / security / src / test / resources / spring / test.org.wamblee.security.datasource.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
3
4 <!-- This is the Spring configuration to define the database-related stuff for the
5     all persistence tests.  -->
6     <beans>
7         <bean id="dataSource" 
8             class="org.springframework.jdbc.datasource.DriverManagerDataSource">
9             <property name="driverClassName"><value>${database.driver}</value></property>
10             <property name="url"><value>${database.url}</value></property>
11             <property name="username"><value>${database.username}</value></property>
12             <property name="password"><value>${database.password}</value></property>
13         </bean>
14     </beans>
15