]> git.argeo.org Git - gpl/argeo-slc.git/blob - spring.xml
6ef3613e83e8d0c2ae85d77e31df446cfda46795
[gpl/argeo-slc.git] / spring.xml
1 <!--
2
3 Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16
17 -->
18
19 <beans xmlns="http://www.springframework.org/schema/beans"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"
22 default-lazy-init="true">
23
24 <bean id="slcDefault.castor.marshaller" class="org.springframework.oxm.castor.CastorMarshaller">
25 <property name="mappingLocations">
26 <list>
27 <value>
28 classpath:org/argeo/slc/castor/msg.xml
29 </value>
30 <value>
31 classpath:org/argeo/slc/castor/process.xml
32 </value>
33 <value>
34 classpath:org/argeo/slc/castor/runtime.xml
35 </value>
36 <value>
37 classpath:org/argeo/slc/castor/structure.xml
38 </value>
39 <value>
40 classpath:org/argeo/slc/castor/test.xml
41 </value>
42 <value>
43 classpath:org/argeo/slc/castor/execution.xml
44 </value>
45 <value>
46 classpath:org/argeo/slc/castor/attachment.xml
47 </value>
48 <value>
49 classpath:org/argeo/slc/castor/build.xml
50 </value>
51 </list>
52 </property>
53 <property name="whitespacePreserve" value="true" />
54 <property name="encoding" value="UTF-8" />
55 </bean>
56
57 <bean id="slcDefault.castor.xsltReportGenerator" class="org.argeo.slc.xml.test.tree.XsltReportGenerator"
58 init-method="init">
59 <property name="xsltStyleSheet"
60 value="classpath:/org/argeo/slc/core/test/tree/basicReport.xslt" />
61 <property name="marshaller" ref="slcDefault.castor.marshaller" />
62 <property name="logXml" value="false" />
63 <property name="outputDir" value="${slc.workDir}/results/html" />
64 </bean>
65
66 <bean name="slcDefault.castor.fileSlcExecutionNotifier" class="org.argeo.slc.xml.process.FileSlcExecutionNotifier">
67 <property name="basePath" value="${slc.workDir}/process" />
68 <property name="marshaller" ref="slcDefault.castor.marshaller" />
69 </bean>
70
71 </beans>