-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp-client-assembly.xml
More file actions
31 lines (28 loc) · 999 Bytes
/
http-client-assembly.xml
File metadata and controls
31 lines (28 loc) · 999 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>reassembled</id>
<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory>${project.basedir}</baseDirectory>
<formats>
<format>jar</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.build.directory}/assembly/http-client-saxon</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>**/*</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.basedir}/</directory>
<outputDirectory>META-INF/services</outputDirectory>
<includes>
<include>net.sf.saxon.lib.ExtensionFunctionDefinition</include>
</includes>
</fileSet>
</fileSets>
</assembly>