-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathxar-assembly.xml
45 lines (45 loc) · 1.69 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
<?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="exist-db">eXist-db</author>
<website>${project.url}</website>
<license>GNU General Public License, version 1</license>
<copyright>true</copyright>
<type>library</type>
<status>stable</status>
<tag>${project.artifactId}</tag>
<tag>library</tag>
<tag>versioning</tag>
<category id="libs">Libraries</category>
<category id="exist">eXist extensions</category>
<dependency processor="http://exist-db.org" semver-min="3.0.4" />
<dependencySets>
<dependencySet>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
</dependencySet>
<dependencySet>
<groupId>com.bmsi</groupId>
<artifactId>gnudiff</artifactId>
<version>${gnudiff.version}</version>
</dependencySet>
</dependencySets>
<components>
<resource>
<public-uri>${versioning.module.namespace}</public-uri>
<file>${versioning.module.java.package}.${versioning.module.java.classname}</file>
</resource>
</components>
<xquerySets>
<xquerySet>
<namespace>http://exist-db.org/versioning</namespace>
<directory>${basedir}/src/main/xquery</directory>
<includes>
<include>versioning.xqm</include>
</includes>
<outputDirectory>content</outputDirectory>
</xquerySet>
</xquerySets>
</package>