]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.example/exampleSlcAppli/conf/runtime/default.xml
Restructure example
[gpl/argeo-slc.git] / org.argeo.slc.example / exampleSlcAppli / conf / runtime / default.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
5
6 <import
7 resource="classpath:/org/argeo/slc/core/test/spring/applicationContext.xml" />
8 <import
9 resource="classpath:/org/argeo/slc/core/process/spring/applicationContext.xml" />
10
11 <bean id="defaultTestRun"
12 class="org.argeo.slc.core.test.SimpleTestRun" scope="prototype">
13 <property name="testResult" ref="testResult" />
14 <property name="deployedSystem" ref="exampleDeployedSystem" />
15 </bean>
16
17 <bean id="otherTestRun"
18 class="org.argeo.slc.core.test.SimpleTestRun" scope="prototype">
19 <property name="testResult" ref="testResult2" />
20 <property name="deployedSystem" ref="exampleDeployedSystem" />
21 </bean>
22
23 <bean id="testResult"
24 class="org.argeo.slc.core.test.tree.TreeTestResult">
25 <property name="uuid" value="1" />
26 <property name="listeners">
27 <list>
28 <ref bean="slcDefault.test.resultLogger" />
29 </list>
30 </property>
31 </bean>
32
33 <bean id="testResult2"
34 class="org.argeo.slc.core.test.tree.TreeTestResult">
35 <property name="uuid" value="2" />
36 <property name="listeners">
37 <list>
38 <ref bean="slcDefault.test.resultLogger" />
39 </list>
40 </property>
41 </bean>
42
43 <bean name="executionBuildListener"
44 class="org.argeo.slc.ant.SlcExecutionBuildListener">
45 <property name="notifiers">
46 <list>
47 <ref bean="slcDefault.process.fileSlcExecutionNotifier" />
48 <!-- <ref bean="webServiceNotifier" />-->
49 </list>
50 </property>
51 </bean>
52 </beans>