mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Fixed issues so that RM 2.3 works against the latest HEAD-BUGFIX branch
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@83377 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
2
pom.xml
2
pom.xml
@@ -66,7 +66,7 @@
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
<alfresco.base.version>5.0.a</alfresco.base.version>
|
||||
<alfresco.base.version>5.0-BF-SNAPSHOT</alfresco.base.version>
|
||||
|
||||
<!-- Database properties - default values to be overridden in settings.xml -->
|
||||
<db.driver>org.postgresql.Driver</db.driver>
|
||||
|
@@ -1,11 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:aop="http://www.springframework.org/schema/aop"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
|
||||
|
||||
<bean id="rmSqlSessionFactory" class="org.alfresco.ibatis.HierarchicalSqlSessionFactoryBean">
|
||||
<property name="useLocalCaches" value="${mybatis.useLocalCaches}"/>
|
||||
<property name="resourceLoader" ref="dialectResourceLoader"/>
|
||||
<property name="dataSource" ref="dataSource"/>
|
||||
<property name="configLocation">
|
||||
@@ -17,9 +16,9 @@
|
||||
<constructor-arg index="0" ref="rmSqlSessionFactory"/>
|
||||
</bean>
|
||||
|
||||
<bean id="recordsManagementQueryDAO" class="org.alfresco.module.org_alfresco_module_rm.query.RecordsManagementQueryDAOImpl">
|
||||
<bean id="recordsManagementQueryDAO" class="org.alfresco.module.org_alfresco_module_rm.query.RecordsManagementQueryDAOImpl">
|
||||
<property name="sqlSessionTemplate" ref="rmSqlSessionTemplate"/>
|
||||
<property name="qnameDAO" ref="qnameDAO"/>
|
||||
<property name="qnameDAO" ref="qnameDAO"/>
|
||||
</bean>
|
||||
|
||||
</beans>
|
||||
|
@@ -216,7 +216,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.extensions.surf</groupId>
|
||||
<artifactId>spring-webscripts</artifactId>
|
||||
<version>1.2.0</version>
|
||||
<version>${alfresco.base.version}</version>
|
||||
<classifier>tests</classifier>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
Reference in New Issue
Block a user