Skip to content

Commit 0e9b484

Browse files
committed
Issue #2 - configuration example.
1 parent bf075a2 commit 0e9b484

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<jsonix:output fileName="${module.name}.js"/>
2+
<jsonix:output fileName="${module.name}.compact.js" compact="true"/>
3+
4+
<!-- package mapping produces a module -->
5+
6+
<jsonix:module name="WPS_V_1_0_0"/>
7+
8+
<jsonix:module name="WPS_V_1_0_0">
9+
<jsonix:space name="WPS_V_1_0_0" package="net.opengis.wps.v_1_0_0"/>
10+
</jsonix:module>
11+
12+
<!-- Module may contain several spaces -->
13+
<jsonix:module name="WPS_V_1_0_0_OWS_V_1_0_0">
14+
<!-- Name defaults to the name of the base space -->
15+
<jsonix:space name="WPS_V_1_0_0_OWS" base="OWS_V_1_0_0">
16+
<!-- If include is present it says "include just that, nothing else" -->
17+
<!-- You can further reduce the inclusion with jsonix:exclude -->
18+
<jsonix:include>
19+
<!-- All the elements statically reachable/required by the source module -->
20+
<jsonix:dependenciesOfSpace name="WPS_V_1_0_0"/>
21+
<!-- root element -->
22+
<jsonix:elementInfo name="wps:DescribeProcess" xmlns:wps="http://www.opengis.net/wps/1.0.0" scope="..."/>
23+
<!-- specific type -->
24+
<jsonix:typeInfo name="Execute"/>
25+
<jsonix:propertyInfo name="ProcessBriefType.wsdl"/>
26+
</jsonix:include>
27+
<jsonix:exclude/>
28+
</jsonix:space>
29+
</jsonix:module>

0 commit comments

Comments
 (0)