Files
alfresco-community-repo/source/web/WEB-INF/JCRTCK/web.xml
David Caruana 19e3138e1c - Incorporate JCR project into Repository project
- Single configuration entry point for JCR and non-JCR clients (i.e. application-context.xml)
- Addition of build-war, incremental-war build targets (no deploy)
- Remove build of JCR TCK war file by default

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2777 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2006-05-05 16:33:22 +00:00

31 lines
943 B
XML

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<display-name>Alfresco JCR TCK Deployment</display-name>
<description>Alfresco JCR TCK Deployment</description>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:org/alfresco/jcr/test/test-context.xml
</param-value>
<description>Spring config file locations</description>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>Repository Startup</servlet-name>
<servlet-class>org.alfresco.jcr.tck.RepositoryStartupServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
</web-app>