forked from SERG-Delft/jpacman-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
src-assembly.xml
33 lines (30 loc) · 1.02 KB
/
src-assembly.xml
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
<!-- Assembly intended for mvn package task in order to create the source
distribution. -->
<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>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/>
<includes>
<include>*.xml</include>
<include>.checkstyle</include>
<include>.pmd</include>
<include>LICENSE.txt</include>
<include>docs/*.*</include>
</includes>
</fileSet>
</fileSets>
</assembly>