]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.support.castor/src/main/resources/org/argeo/slc/castor/spring.xml
Remove unused class
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.castor / src / main / resources / org / argeo / slc / castor / spring.xml
index 46f0ad212025144b04501af96a69095812880d6d..0b73dee77e54732f19a4078ce4b1ddae6d58a871 100644 (file)
@@ -1,45 +1,63 @@
+<!--
+
+    Copyright (C) 2007-2012 Mathieu Baudier
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+
+            http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+-->
+
+<!-- Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org> Licensed under 
+       the Apache License, Version 2.0 (the "License"); you may not use this file 
+       except in compliance with the License. You may obtain a copy of the License 
+       at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable 
+       law or agreed to in writing, software distributed under the License is distributed 
+       on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 
+       express or implied. See the License for the specific language governing permissions 
+       and limitations under the License. -->
+
 <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"
        default-lazy-init="true">
 
-       <bean id="slcDefault.castor.marshaller"
-               class="org.springframework.oxm.castor.CastorMarshaller">
+       <bean id="slcDefault.castor.marshaller" class="org.springframework.oxm.castor.CastorMarshaller">
                <property name="mappingLocations">
                        <list>
-                               <value>
-                                       classpath:org/argeo/slc/castor/msg.xml
-                               </value>
-                               <value>
-                                       classpath:org/argeo/slc/castor/process.xml
-                               </value>
-                               <value>
-                                       classpath:org/argeo/slc/castor/runtime.xml
-                               </value>
-                               <value>
-                                       classpath:org/argeo/slc/castor/structure.xml
-                               </value>
-                               <value>
-                                       classpath:org/argeo/slc/castor/test.xml
-                               </value>
+                               <value>classpath:org/argeo/slc/castor/common.xml</value>
+                               <value>classpath:org/argeo/slc/castor/msg.xml</value>
+                               <value>classpath:org/argeo/slc/castor/process.xml</value>
+                               <value>classpath:org/argeo/slc/castor/runtime.xml</value>
+                               <value>classpath:org/argeo/slc/castor/structure.xml</value>
+                               <value>classpath:org/argeo/slc/castor/test.xml</value>
+                               <value>classpath:org/argeo/slc/castor/execution.xml</value>
+                               <value>classpath:org/argeo/slc/castor/attachment.xml</value>
                        </list>
                </property>
                <property name="whitespacePreserve" value="true" />
+               <property name="encoding" value="UTF-8" />
        </bean>
 
-       <bean id="slcDefault.castor.xsltReportGenerator"
-               class="org.argeo.slc.xml.test.tree.XsltReportGenerator"
+       <bean id="slcDefault.castor.xsltReportGenerator" class="org.argeo.slc.xml.test.tree.XsltReportGenerator"
                init-method="init">
                <property name="xsltStyleSheet"
                        value="classpath:/org/argeo/slc/core/test/tree/basicReport.xslt" />
                <property name="marshaller" ref="slcDefault.castor.marshaller" />
                <property name="logXml" value="false" />
-               <property name="outputDir" value="${slc.workDir}/results/html" />
+               <property name="outputDir" value="${user.dir}/results/html" />
        </bean>
 
-       <bean name="slcDefault.castor.fileSlcExecutionNotifier"
-               class="org.argeo.slc.xml.process.FileSlcExecutionNotifier">
-               <property name="basePath" value="${slc.workDir}/process" />
+       <bean name="slcDefault.castor.fileSlcExecutionNotifier" class="org.argeo.slc.xml.process.FileSlcExecutionNotifier">
+               <property name="basePath" value="${user.dir}/process" />
                <property name="marshaller" ref="slcDefault.castor.marshaller" />
        </bean>