-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxar-assembly.xml
65 lines (55 loc) · 2.22 KB
/
xar-assembly.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?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>
<description>${project.description}</description>
<author id="evolved-binary">Evolved Binary</author>
<website>${project.url}</website>
<license>Apache License, Version 2.0</license>
<copyright>true</copyright>
<type>library</type>
<status>stable</status>
<tag>${project.artifactId}</tag>
<tag>library</tag>
<tag>unicode</tag>
<tag>wylie</tag>
<tag>buddhist</tag>
<category id="libraries">Libraries</category>
<dependency processor="http://exist-db.org" semver-min="${exist.version}" />
<!-- Collection inside /db/apps where xar-resources will be copied to -->
<target>${package-abbrev}</target>
<!-- 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>
<!-- include the XQuery Library Module written in Java (JAR output) from this project -->
<dependencySets>
<dependencySet>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
</dependencySet>
<!-- we have to list all dependent libs too for the Kuberam plugin to function properly-->
<dependencySet>
<groupId>io.bdrc.ewtsconverter</groupId>
<artifactId>ewts-converter</artifactId>
<version>${etws.converter.version}</version>
</dependencySet>
</dependencySets>
<!-- register the Java module with eXist-db -->
<components>
<resource>
<public-uri>${ewts.module.namespace}</public-uri>
<file>urn:java:class:org.tbrc.xquery.extensions.${ewts.module.java.classname}</file>
</resource>
</components>
</package>