forked from avandeursen/jpacman-framework-v5
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsrc-assembly.xml
More file actions
32 lines (29 loc) · 797 Bytes
/
src-assembly.xml
File metadata and controls
32 lines (29 loc) · 797 Bytes
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
<!-- Assembly intended for mvn package task in order to create the source
distribution. -->
<assembly>
<id>src</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>true</includeBaseDirectory>
<!-- We're producing a source distribution, so quite a bit needs to be included. -->
<fileSets>
<!-- The actual sources. -->
<fileSet>
<directory>src</directory>
<outputDirectory>src</outputDirectory>
</fileSet>
<!--Get misc user files -->
<fileSet>
<directory>${project.basedir}</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>*.xml</include>
<include>.checkstyle</include>
<include>.pmd</include>
<include>LICENSE.txt</include>
<include>docs/*.*</include>
</includes>
</fileSet>
</fileSets>
</assembly>