-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathxar-assembly.xml
67 lines (62 loc) · 2.43 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
<!--
eXist-db EXPath Cryptographic library
eXist-db wrapper for EXPath Cryptographic Java library
Copyright (C) 2016 Claudius Teodorescu
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation; either version 2.1
of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-->
<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="cteodorescu">Claudius Teodorescu</author>
<website>${project.url}</website>
<license>GNU LGPL v2.1</license>
<copyright>true</copyright>
<type>library</type>
<status>stable</status>
<tag>${project.artifactId}</tag>
<tag>expath</tag>
<tag>library</tag>
<tag>exist</tag>
<category id="libs">Libraries</category>
<category id="exist">eXist extensions</category>
<dependency processor="http://exist-db.org" semver-min="${exist.version}" />
<dependencySets>
<dependencySet>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<outputFileNameMapping>${project.artifactId}-exist-java-lib-${project.version}.jar</outputFileNameMapping>
</dependencySet>
<dependencySet>
<groupId>org.expath.crypto</groupId>
<artifactId>crypto-java</artifactId>
<version>${crypto.java.lib.version}</version>
<outputFileNameMapping>crypto-java-lib-${crypto.java.lib.version}.jar</outputFileNameMapping>
</dependencySet>
</dependencySets>
<components>
<resource>
<public-uri>${crypto.module.ns}</public-uri>
<file>urn:java:class:${crypto.module.java.class}</file>
</resource>
</components>
<fileSets>
<fileSet>
<directory>${project.build.directory}/html</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>index.html</include>
</includes>
</fileSet>
</fileSets>
</package>