blob: fb76f21c5a865341dd5c5b979586a7941df54b46 (
plain)
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
|
<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>demo</id>
<formats>
<format>tar.gz</format>
</formats>
<fileSets>
<fileSet>
<directory>.</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>*.sh</include>
<include>*.md</include>
<include>*.TXT</include>
<include>*.c</include>
<include>*.crt</include>
<include>evel/**</include>
<include>debian/*</include>
<include>debian/format/*</include>
<include>Makefile</include>
</includes>
<excludes>
<exclude>*.o</exclude>
<exclude>**/*.o</exclude>
<exclude>**/*.tgz</exclude>
<exclude>**/*.a</exclude>
<exclude>**/*.so</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>
|