Skip to content

Commit f464770

Browse files
authored
Merge pull request #3941 from line-o/fix/installer-bundle
[hotfix] include templating in installer and tests
2 parents 43ef0e3 + 184d02e commit f464770

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

exist-installer/src/main/izpack/install.xml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -164,15 +164,15 @@
164164

165165
<pack name="Apps" required="false" installGroups="Group2">
166166
<description>Application Packages: additional applications for XQuery development, database management,
167-
documentation, examples and more. You should at least install the "dashboard" and the "shared" package to
168-
be able to add more applications later.
167+
documentation, examples and more. You should at least install the "dashboard" and "packageservice"
168+
package to be able to add more applications later.
169169
</description>
170170
</pack>
171171

172-
<pack name="shared" required="true" preselected="true" parent="Apps">
173-
<description>Shared Resources: jquery, dojo, ace, templating, utilities</description>
172+
<pack name="templating" required="true" preselected="true" parent="Apps">
173+
<description>Templating library (formally part of shared-resources)</description>
174174
<fileset targetdir="$INSTALL_PATH/autodeploy" dir="autodeploy">
175-
<include name="shared-resources-*.xar"/>
175+
<include name="templating-*.xar"/>
176176
</fileset>
177177
</pack>
178178

@@ -232,12 +232,5 @@
232232
</fileset>
233233
</pack>
234234

235-
<pack name="markdown" required="false" preselected="true" parent="Apps">
236-
<description>Markdown Parser in XQuery</description>
237-
<fileset targetdir="$INSTALL_PATH/autodeploy" dir="autodeploy">
238-
<include name="markdown-*.xar"/>
239-
</fileset>
240-
</pack>
241-
242235
</packs>
243236
</izpack:installation>

extensions/modules/expathrepo/src/test/xquery/modules/expathrepo/deployment.xql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import module namespace xmldb = "http://exist-db.org/xquery/xmldb";
3535
declare variable $deploy:expathxml :=
3636
<package xmlns="http://expath.org/ns/pkg" name="http://exist-db.org/apps/dtest" abbrev="dtest" version="1.0.0" spec="1.0">
3737
<title>Deployment Test</title>
38-
<dependency package="http://exist-db.org/apps/shared" semver-min="0.4.0"/>
38+
<dependency package="http://exist-db.org/html-templating" semver-min="1.0.2"/>
3939
</package>;
4040

4141
declare variable $deploy:repoxml :=
@@ -184,4 +184,4 @@ function deploy:install-uninstall-library() {
184184
$remove,
185185
$avail3
186186
)
187-
};
187+
};

0 commit comments

Comments
 (0)