root/trunk/samples/kauri-dbforms-sample/conf/kauri/wiring.xml @ 1409

Revision 1409, 1.8 KB (checked in by karel, 9 months ago)

Fix wiring: upload was missing

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<wiring>
3
4  <modules>
5 
6    <artifact id="template" groupId="org.kauriproject" artifactId="kauri-template-service-impl" />
7    <artifact id="routing" groupId="org.kauriproject" artifactId="kauri-routing-impl" />
8   
9    <artifact id="blueprintcss" groupId="org.kauriproject" artifactId="kauri-blueprintcss">
10      <mount name="main" path="/kauri/blueprintcss"/>
11    </artifact>
12   
13    <artifact id="samples.common" groupId="org.kauriproject" artifactId="kauri-samples-common">
14      <inject-restservice name="blueprintcss" ref="blueprintcss:main"/>
15
16      <mount name="main" path="/samples/common"/>
17    </artifact>
18   
19    <!-- forms stuff start -->
20    <artifact id="jquery" groupId="org.kauriproject" artifactId="kauri-jquery" >
21      <mount name="main" path="/kauri/jquery" />
22    </artifact>
23
24    <artifact id="tmprsrc" groupId="org.kauriproject" artifactId="kauri-tmprsrc">
25      <mount name="upload" path="/kauri/upload" />
26     
27      <inject-restservice name="store" ref="url(file:///tmp/kauri-temp-upload)" />
28    </artifact>
29   
30    <artifact id="forms" groupId="org.kauriproject" artifactId="kauri-forms-framework" >
31      <mount name="main" path="/kauri/forms" />
32
33      <inject-restservice name="jquery" ref="jquery:main" />
34      <inject-restservice name="upload" ref="tmprsrc:upload" />
35    </artifact>
36    <!-- forms stuff end -->
37
38    <artifact id="sample.dbforms" groupId="org.kauriproject" artifactId="kauri-dbforms-sample" >
39      <inject-restservice name="forms" ref="forms:main" />
40      <inject-restservice name="samples-common" ref="samples.common:main"/>
41      <inject-restservice name="jquery" ref="jquery:main" />
42
43      <mount name="jpaRestlet" path="/data"/>
44
45      <mount name="main" path=""/>
46    </artifact>
47   
48  </modules>
49
50</wiring>
Note: See TracBrowser for help on using the browser.