forked from eXist-db/expath-crypto-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxar-assembly.xml
46 lines (46 loc) · 1.57 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
<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>ro.kuberam.libs.java</groupId>
<artifactId>crypto</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:org.expath.exist.crypto.ExistExpathCryptoModule</file>
</resource>
</components>
<fileSets>
<fileSet>
<directory>${project.build.directory}/html</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>index.html</include>
</includes>
</fileSet>
</fileSets>
</package>