generated from intersystems-community/objectscript-package-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
module.xml
executable file
·49 lines (47 loc) · 1.57 KB
/
module.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<Export generator="Cache" version="25">
<Document name="objectscript-package-example.ZPM">
<Module>
<Name>objectscript-package-example</Name>
<Version>1.0.2</Version>
<Description>ObjectScript Package example with simplified folder structure</Description>
<Packaging>module</Packaging>
<SourcesRoot>src</SourcesRoot>
<Resource Name="community.objectscript.PKG"/>
<Resource Name="community.objectscript.settings.GBL" Directory="gbl"/>
<UnitTest Name="/src" Package="UnitTests" Phase="test"/>
<Invokes>
<Invoke Class="community.objectscript.PersistentClass" Method="CreateRecord"></Invoke>
<Invoke Class="community.objectscript.ClassExample" Method="SetToTheGlobal">
<Arg>42</Arg>
<Arg>Text Data</Arg>
</Invoke>
</Invokes>
<CSPApplication
Url="/hello"
SourcePath="/src/csp"
DeployPath="${cspdir}hello"
ServeFiles="1"
Recurse="1"
CookiePath="/hello"
UseCookies="2"
MatchRoles=":${dbrole}"
PasswordAuthEnabled="1"
UnauthenticatedEnabled="0"
/>
<CSPApplication
Url="/rest-test"
SourcePath="/src/csp"
Recurse="1"
DeployPath="${cspdir}rest-test"
MatchRoles=":${dbrole}"
PasswordAuthEnabled="1"
UnauthenticatedEnabled="0"
DispatchClass="community.objectscript.RESTExample"
ServeFiles="1"
CookiePath="/rest-test"
UseCookies="2"
/>
</Module>
</Document>
</Export>