-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
xar-assembly.xml
262 lines (251 loc) · 12.2 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<?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="exist-db">${project.organization.name}</author>
<website>${project.url}</website>
<license>GNU Lesser General Public License, version 2.1</license>
<copyright>true</copyright>
<!-- should be either "application" or "library" -->
<type>application</type>
<!-- type>library</type -->
<status>stable</status>
<tag>${project.artifactId}</tag>
<tag>application</tag>
<category id="apps">Applications</category>
<dependency processor="http://exist-db.org" semver-min="${exist.processor.version}" semver-max="6"/>
<dependency package="http://exist-db.org/html-templating" semver-min="${templating.version}"/>
<!-- Collection inside /db/apps where xar-resources will be copied to -->
<target>${package-abbrev}</target>
<prepare>pre-install.xql</prepare>
<finish>post-install.xql</finish>
<permissions password="monex" user="monex" group="monex" mode="rw-rw-r--"/>
<!-- 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>
<excludes>
<!--
These are not needed from this fileSet,
instead they are taken from the fileSet
of the Gulp transform output in ${project.build.directory}/generated-resources/frontend/xar-resources
see the fileSet below.
-->
<exclude>**.js</exclude>
<exclude>**.css</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>${project.build.directory}/generated-resources/frontend/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>
<dependencySet>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependencySet>
<dependencySet>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependencySet>
<dependencySet>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>${websocket.api.version}</version>
</dependencySet>
</dependencySets>
<!-- register the Java module to eXist-db -->
<components>
<resource>
<public-uri>${console.module.namespace}</public-uri>
<file>urn:java:class:${console.module.java.classname}</file>
</resource>
</components>
<changelog>
<change version="0.4">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Send alerts only to receivers watching the affected instance</li>
<li>Store last ping status in db; send alerts only if status changed</li>
</ul>
</change>
<change version="0.5">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>New function console:dump prints all variables in the local variable stack, which are visible at the point the statement appears in the code.</li>
<li>Info popup in remote console causes browser display issues.</li>
</ul>
</change>
<change version="0.9.1">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fix eXist dependency to work with 3.0RC2 and final</li>
</ul>
</change>
<change version="0.9.4">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Update console logging to match changes in internal eXist API</li>
<li>Add hipchat notifications</li>
</ul>
</change>
<change version="0.9.6">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>New "Tare" button in Query Profiling pane factors out external processes from results</li>
</ul>
</change>
<change version="0.9.7">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Sync source with GitHub repository</li>
</ul>
</change>
<change version="0.9.8">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Show version of Java in the Monitoring > System Information pane</li>
<li>Removed package's semver-max to ensure compatibility with all eXist 3.x releases</li>
</ul>
</change>
<change version="0.9.9">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Upgraded included jetty jars to 9.4.6</li>
<li>Updated eXist dependency to require v3.5.0</li>
</ul>
</change>
<change version="0.9.10">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Improved build process</li>
</ul>
</change>
<change version="0.9.11">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Updated: Links to monex's GitHub repository - <a href="https://github.com/eXist-db/monex/issues/39">#39</a></li>
</ul>
</change>
<change version="0.9.12">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Move jetty jars to eXist-db to prevent version conflicts</li>
</ul>
</change>
<change version="0.9.13">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Improved compatibility with Tomcat 7 - <a href="https://github.com/eXist-db/monex/issues/9">#9</a></li>
<li>Improved resolution of dependencies during build and build documentation - <a href="https://github.com/eXist-db/monex/pull/16">#16</a></li>
<li>Removed old version warnings <a href="https://github.com/eXist-db/monex/issues/51">#51</a></li>
</ul>
</change>
<change version="0.9.14">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Hotfix - <a href="https://github.com/eXist-db/monex/issues/57">#57</a></li>
</ul>
</change>
<change version="0.9.15">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Choose shorter period for ping to keep the websocket connection open in Remote Console (was 5s, now .5s)</li>
</ul>
</change>
<change version="0.9.16">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fix release</li>
</ul>
</change>
<change version="0.9.17">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Repair for eXist 5.0.0 release</li>
</ul>
</change>
<change version="1.0.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Version note: Due to changes in JMX output in eXist 5.x, Monex is now split into a 1.x branch for users of eXist 4.x and the develop branch will carry Monex 2.0 releases for users of eXist 5+</li>
<li>Improved: Monex is now built with maven</li>
<li>Improved: Removed dependency on Jetty. Monex now uses the standard Java WebSocket API.</li>
<li>Improved: Declared front end dependencies via npm.</li>
<li>Removed: HipChat module</li>
<li>Fixed: Javascript errors when loading various pages</li>
</ul>
</change>
<change version="1.0.1">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fixed: Installation of monex's test collection & instances config files</li>
</ul>
</change>
<change version="2.0.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Version note: Due to changes in JMX output in eXist 5, Monex is now split into a 1.x branch for users of eXist 4.x and the master branch will carry Monex 2.x releases for users of eXist 5+.</li>
<li>Improved: Monex is now built with maven</li>
<li>Improved: Removed dependency on Jetty. Monex now uses the standard Java WebSocket API.</li>
<li>Improved: Declared front end dependencies via npm.</li>
<li>Removed: HipChat module</li>
<li>Fixed: Javascript errors when loading various pages</li>
</ul>
</change>
<change version="2.0.1">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fixed: Installation of monex's test collection & instances config files</li>
</ul>
</change>
<change version="2.0.2">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fix console for compatibility with eXist 5</li>
</ul>
</change>
<change version="2.0.3">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fixed: Removed deprecated draft map constructor for compatibility with forthcoming eXist 5.0.0-RC8</li>
</ul>
</change>
<change version="2.0.4">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fixed: Moved integration tests into the source repository - <a href="https://github.com/eXist-db/monex/pull/96">#96</a></li>
<li>Fixed: Read product details from JMX output - <a href="https://github.com/eXist-db/monex/pull/99">#99</a></li>
</ul>
</change>
<change version="2.1.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fixed: Dependency conflicts. Now requires eXist 5.1.0.</li>
</ul>
</change>
<change version="2.1.1">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Updated: Aligned Jackson dependency with eXist 5.2.0.</li>
</ul>
</change>
<change version="3.0.3">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Important: Due to an internal API change this version is compatible with exist db versions 5.3.0-SNAPSHOT and latter</li>
<li>Fix yank on collapsing opening sidebar</li>
<li>Update AdminLTE theme to version 2.4.18</li>
<li>Replace ACE edior with prismjs for highlighting code</li>
<li>Replace dependency on shared-resources package with new templating only library</li>
</ul>
</change>
<change version="3.0.4">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Important: Due to an internal API change this version is compatible with exist-db versions 5.4.0 and later</li>
<li>Fixed: Display all values of a facet - <a href="https://github.com/eXist-db/monex/pull/166">#166</a></li>
</ul>
</change>
<change version="3.0.5">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fixed: Mistyped parameter in post-install.xql - <a href="https://github.com/eXist-db/monex/commit/bbe260744abb8bc0baed00d073383299f76a96cf">ad2868e</a></li>
</ul>
</change>
<change version="4.0.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Breaking: Due to internal API changes this version of monex requires eXist-db version 6.1.0 or later - <a href="https://github.com/eXist-db/monex/pull/210">#210</a>, <a href="https://github.com/eXist-db/monex/pull/223">#223</a></li>
<li>Fixed: Added missing release notes for 3.0.5 release - <a href="https://github.com/eXist-db/monex/issues/217">#217</a></li>
</ul>
</change>
</changelog>
</package>