mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
These are happening because the Enterprise classes/config are available to the Repository project test runs. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@55022 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<!-- This is the smallest XML configuration that will manage to start -->
|
|
<!-- Many parts of the application are missing though, so don't expect -->
|
|
<!-- to be able to do much more than run core unit tests with it -->
|
|
<beans>
|
|
|
|
<!--
|
|
Import the core parts of the context. They are required
|
|
for anything to work
|
|
-->
|
|
<import resource="classpath:alfresco/application-context-core.xml" />
|
|
|
|
<!-- required to bring up the search subsystem -->
|
|
<import resource="classpath:alfresco/cmis-api-context.xml" />
|
|
<import resource="classpath:alfresco/opencmis-context.xml" />
|
|
<import resource="classpath:alfresco/thumbnail-service-context.xml"/>
|
|
<import resource="classpath:alfresco/rendition-services-context.xml"/>
|
|
|
|
<!-- Required by RepositoryStartStopTest which may apply the CalendarAllDayEventDatesCorrectingPatch -->
|
|
<import resource="classpath:alfresco/calendar-services-context.xml"/>
|
|
|
|
<!--
|
|
Import all modules and related components.
|
|
-->
|
|
<import resource="classpath*:alfresco/module-context.xml" />
|
|
|
|
<!--
|
|
Import of the minimal extensions and bean overrides.
|
|
-->
|
|
<import resource="classpath*:alfresco/extension/dev-context.xml" />
|
|
<import resource="classpath*:alfresco/extension/test-context.xml" />
|
|
|
|
<!-- Dummy bootstrap to stop minimal-context tests failing -->
|
|
<!--
|
|
TODO: minimal-context tests should not have the enterprise config
|
|
resources on the classpath.
|
|
-->
|
|
<bean id="clusteringBootstrap" class="java.lang.String"/>
|
|
|
|
<bean id="ClusterService" class="java.lang.String"/>
|
|
</beans>
|