-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxar-assembly.xml
More file actions
40 lines (32 loc) · 1.28 KB
/
xar-assembly.xml
File metadata and controls
40 lines (32 loc) · 1.28 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<package xmlns="http://expath.org/ns/pkg" name="${package-name}" abbrev="${package-abbrev}" version="${project.version}"
spec="1.0">
<title>${package-title}</title>
<author id="my-organisation">${project.organization.name}</author>
<website>${project.url}</website>
<license>Apache License, Version 2.0</license>
<copyright>true</copyright>
<type>application</type>
<status>stable</status>
<tag>${project.artifactId}</tag>
<tag>application</tag>
<category id="apps">Applications</category>
<dependency processor="http://elemental.xyz" semver-min="${elemental.version}"/>
<!-- Collection inside /db/apps where xar-resources will be copied to -->
<target>${package-abbrev}</target>
<prepare>pre-install.xq</prepare>
<finish>post-install.xq</finish>
<!-- includes everything in src/main/xar-resources, README.md, and LICENSE -->
<fileSets>
<fileSet>
<directory>${basedir}</directory>
<includes>
<include>README.md</include>
<include>LICENSE</include>
</includes>
</fileSet>
<fileSet>
<directory>${basedir}/src/main/xar-resources</directory>
</fileSet>
</fileSets>
</package>