mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- related build fixes git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29155 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
34 lines
1.3 KiB
XML
34 lines
1.3 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"/>
|
|
|
|
<!--
|
|
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" />
|
|
|
|
|
|
</beans>
|