Skip to content

Commit

Permalink
packages, fhs: fix saxon includes/excludes expression
Browse files Browse the repository at this point in the history
The current includes/excludes expression in the fhs package assembly xml fails to move the saxon jars with groupId net.sf.saxon or with artifact "saxon-dom" into the saxon subdirectory.

Added the appropriate globbing to fix this.

Target: master
Request: 2.8
Request: 2.7
Request: 2.6
Patch: http://rb.dcache.org/r/6566/
Require-book: no
Require-notes: no
Acked-by: Gerd
  • Loading branch information
alrossi committed Feb 12, 2014
1 parent 05cb3fc commit 9ddc482
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/fhs/src/main/assembly/fhs.xml
Expand Up @@ -6,7 +6,7 @@
<dependencySet>
<excludes>
<exclude>*:*:war:*</exclude>
<exclude>saxon:saxon:*:*</exclude>
<exclude>*saxon:saxon*:*:*</exclude>
</excludes>
<outputDirectory>usr/share/dcache/classes</outputDirectory>
<useProjectArtifact>false</useProjectArtifact>
Expand All @@ -25,7 +25,7 @@
</dependencySet>
<dependencySet>
<includes>
<include>saxon:saxon:*:*</include>
<include>*saxon:saxon*:*:*</include>
</includes>
<outputDirectory>usr/share/dcache/classes/saxon</outputDirectory>
<fileMode>644</fileMode>
Expand Down

0 comments on commit 9ddc482

Please sign in to comment.