-
Notifications
You must be signed in to change notification settings - Fork 1
/
assembly.xml
65 lines (61 loc) · 2.71 KB
/
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
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<!-- this file describes how to build the file distribution for this project
Developers should not change the structure, but may need edit the dependency sets at the bottom as necessary
-->
<id>mule-module-ricston</id>
<formats>
<format>tar.gz</format>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>target</directory>
<outputDirectory>lib</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
<fileSet>
<directory>examples</directory>
<outputDirectory>lib</outputDirectory>
</fileSet>
<fileSet>
<directory></directory>
<outputDirectory></outputDirectory>
<includes>
<include>LICENSE.txt</include>
</includes>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<outputDirectory>lib</outputDirectory>
<useTransitiveFiltering>true</useTransitiveFiltering>
<useTransitiveDependencies>true</useTransitiveDependencies>
<useStrictFiltering>false</useStrictFiltering>
<excludes>
<!-- exclude all Mule dependencies since they will be avialable in the container -->
<exclude>org.mule:mule-core</exclude>
<exclude>org.mule.modules:*</exclude>
<exclude>org.mule.tests:*</exclude>
<exclude>org.mule.transports:*</exclude>
<!-- exclude common transitive dependencies that Mule makes available anyway -->
<exclude>org.springframework:spring-context</exclude>
<!-- remove all Xml apis. If they are required the Mule Xml module should be used by the user of this module -->
<exclude>dom4j:*</exclude>
<exclude>jdom:*</exclude>
<exclude>xalan:*</exclude>
<exclude>jaxen:*</exclude>
<exclude>xml-apis:*</exclude>
<exclude>xerces:*</exclude>
<!-- Mule uses SLF4J with Log4J, not including these in the distribution will avoid unnecessary logging headaches -->
<exclude>commons-logging:*</exclude>
<exclude>log4j:*</exclude>
</excludes>
<scope>runtime</scope>
</dependencySet>
</dependencySets>
</assembly>