-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
xar-assembly.xml
94 lines (84 loc) · 4.29 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?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="joewiz">Joe Wicentowski</author>
<website>${project.url}</website>
<license>The 3-Clause BSD License</license>
<copyright>true</copyright>
<type>library</type>
<status>stable</status>
<tag>${project.artifactId}</tag>
<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 modules written in XQuery from this project -->
<xquerySets>
<xquerySet>
<namespace>http://exist-db.org/xquery/semver</namespace>
<directory>${basedir}/src/main/xquery</directory>
<includes>
<include>semver.xqm</include>
</includes>
<outputDirectory>content</outputDirectory>
</xquerySet>
</xquerySets>
<!-- register the Java module to eXist-db -->
<!-- components>
<resource>
<public-uri>${example.module.namespace}</public-uri>
<file>urn:java:class:org.exist-db.xquery.semver.${example.module.java.classname}</file>
</resource>
</components -->
<!-- changelog - maintained manually, for the package repository -->
<changelog>
<change xmlns="http://exist-db.org/xquery/repo" version="3.0.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Breaking: Fixes to EXPath Package dependency resolution - <a href="https://github.com/eXist-db/semver.xq/pull/26">#26</a>.</li>
</ul>
</change>
<change xmlns="http://exist-db.org/xquery/repo" version="2.4.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>New: Tests to ensure compatibility with recent releases - <a href="https://github.com/eXist-db/semver.xq/pull/13">#13</a>, <a href="https://github.com/eXist-db/semver.xq/pull/14">#14</a>.</li>
<li>Fix: The semver:sort#3 function was not returning all results - <a href="https://github.com/eXist-db/semver.xq/pull/15">#15</a>.</li>
<li>New: Create a 'watch' and live deploy environment using Docker - <a href="https://github.com/eXist-db/semver.xq/pull/16">#16</a>.</li>
<li>New: Add handling for EXPath Package SemVer Templates - <a href="https://github.com/eXist-db/semver.xq/pull/18">#18</a>.</li>
</ul>
</change>
<change xmlns="http://exist-db.org/xquery/repo" version="2.3.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>New: Added a function for sorting arbitrary items, semver:sort#3 - <a href="https://github.com/eXist-db/semver.xq/pull/5">#5</a>.</li>
</ul>
</change>
<change xmlns="http://exist-db.org/xquery/repo" version="2.2.2">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fix: Fixed a bug in semver:compare - <a href="https://github.com/eXist-db/semver.xq/pull/3">#3</a>.</li>
</ul>
</change>
<change xmlns="http://exist-db.org/xquery/repo" version="2.2.1">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fix: Fixed an issue with coercing version strings for comparisons.</li>
</ul>
</change>
<change xmlns="http://exist-db.org/xquery/repo" version="2.2.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>The first EXPath packaged version of semver.xq.</li>
<li>Feature: Adds support for coercing non-SemVer version strings into SemVer 2.0.0 compatible version strings.</li>
</ul>
</change>
</changelog>
</package>