| 1 | | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | | <wiring> |
| 3 | | |
| 4 | | <modules> |
| 5 | | |
| 6 | | <artifact id="routing" groupId="org.kauriproject" artifactId="kauri-routing-impl"> |
| 7 | | </artifact> |
| 8 | | |
| 9 | | <artifact id="template" groupId="org.kauriproject" artifactId="kauri-template-service-impl"> |
| 10 | | </artifact> |
| 11 | | |
| 12 | | <artifact id="representation" groupId="org.kauriproject" artifactId="kauri-representationbuilder-impl"> |
| 13 | | </artifact> |
| 14 | | |
| 15 | | <artifact id="jquery" groupId="org.kauriproject" artifactId="kauri-jquery" > |
| 16 | | <mount name="main" path="/kauri/jquery"/> |
| 17 | | </artifact> |
| 18 | | |
| 19 | | <artifact id="forms" groupId="org.kauriproject" artifactId="kauri-forms-framework" > |
| 20 | | <mount name="main" path="/kauri/forms"/> |
| 21 | | <inject-restservice name="jquery" ref="jquery:main"/> |
| 22 | | </artifact> |
| 23 | | |
| 24 | | <artifact id="module1" groupId="${groupId}" artifactId="module1" version="${version}"> |
| 25 | | <inject-restservice name="forms" ref="forms:main"/> |
| 26 | | <inject-restservice name="jquery" ref="jquery:main"/> |
| 27 | | |
| 28 | | <mount name="main" path=""/> |
| 29 | | <mount name="data" path="/data"/> |
| 30 | | </artifact> |
| 31 | | |
| 32 | | </modules> |
| 33 | | |
| 34 | | </wiring> |
| | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| | 2 | <wiring> |
| | 3 | |
| | 4 | <modules> |
| | 5 | |
| | 6 | <artifact id="routing" groupId="org.kauriproject" artifactId="kauri-routing-impl"> |
| | 7 | </artifact> |
| | 8 | |
| | 9 | <artifact id="template" groupId="org.kauriproject" artifactId="kauri-template-service-impl"> |
| | 10 | </artifact> |
| | 11 | |
| | 12 | <artifact id="representation" groupId="org.kauriproject" artifactId="kauri-representationbuilder-impl"> |
| | 13 | </artifact> |
| | 14 | |
| | 15 | <artifact id="jquery" groupId="org.kauriproject" artifactId="kauri-jquery" > |
| | 16 | <mount name="main" path="/kauri/jquery"/> |
| | 17 | </artifact> |
| | 18 | |
| | 19 | <artifact id="tmprsrc" groupId="org.kauriproject" artifactId="kauri-tmprsrc"> |
| | 20 | <mount name="upload" path="/kauri/upload" /> |
| | 21 | |
| | 22 | <inject-restservice name="store" ref="url(file:///tmp/kauri-temp-upload)" /> |
| | 23 | </artifact> |
| | 24 | |
| | 25 | <artifact id="forms" groupId="org.kauriproject" artifactId="kauri-forms-framework" > |
| | 26 | <mount name="main" path="/kauri/forms"/> |
| | 27 | <inject-restservice name="jquery" ref="jquery:main"/> |
| | 28 | <inject-restservice name="upload" ref="tmprsrc:upload"/> |
| | 29 | </artifact> |
| | 30 | |
| | 31 | <artifact id="module1" groupId="com.mycompany" artifactId="module1" version="1.0-SNAPSHOT"> |
| | 32 | <inject-restservice name="forms" ref="forms:main"/> |
| | 33 | <inject-restservice name="jquery" ref="jquery:main"/> |
| | 34 | |
| | 35 | <mount name="main" path=""/> |
| | 36 | <mount name="data" path="/data"/> |
| | 37 | </artifact> |
| | 38 | |
| | 39 | </modules> |
| | 40 | |
| | 41 | </wiring> |