blob: ae7f7269fd0a3479f44f6dba5fe5ae126bbc8df6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>holmes-rulemgt-frontend</id>
<formats>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>dist</directory>
<outputDirectory>/holmes</outputDirectory>
</fileSet>
</fileSets>
</assembly>
|