blob: 7116a6fb46256c78e0b02d148c911ef37be8a239 [file]
<!-- Maven assembly plugin configuration for executable packaging
See https://maven.apache.org/plugins/maven-assembly-plugin/faq.html#module-binaries
TODO: Should include xercesImpl and xml-apis jarfiles?
Not regex, bcel, commons
And those should be moved to xalan-X_version/
-->
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 http://maven.apache.org/xsd/assembly-2.2.0.xsd">
<id>bin</id>
<formats>
<format>zip</format>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<moduleSets>
<moduleSet>
<useAllReactorProjects>true</useAllReactorProjects>
<!-- Now, select which projects to include in this module-set. -->
<includes>
<include>xalan:serializer</include>
<include>xalan:xalan</include>
<include>xalan:samples</include>
</includes>
<binaries>
<outputDirectory>${project.parent.name}_${project.parent.version}</outputDirectory>
<unpack>false</unpack>
<dependencySets>
<dependencySet>
<excludes>
<exclude>org.jboss.spec.javax.rmi:jboss-rmi-api_1.0_spec</exclude>
</excludes>
</dependencySet>
</dependencySets>
</binaries>
</moduleSet>
</moduleSets>
<!-- Should also include source for all the samples, and
all the documentation, for emulation of
Ant behavior. Rename site to docs for back-compatibility.
Should pick up version from variable...?
-->
<fileSets>
<fileSet>
<directory>../target/site</directory>
<!-- Might want explicitly defined values in parent. TODO GONK -->
<outputDirectory>${project.parent.name}_${project.parent.version}/docs</outputDirectory>
</fileSet>
<fileSet>
<directory>../samples</directory>
<outputDirectory>${project.parent.name}_${project.parent.version}/samples</outputDirectory>
<excludes>
<exclude>target/**</exclude>
<exclude>src/site/**</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>