You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
643 B
18 lines
643 B
<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>distribution</id> |
|
<formats> |
|
<format>zip</format> |
|
</formats> |
|
<includeBaseDirectory>false</includeBaseDirectory> |
|
<fileSets> |
|
<fileSet> |
|
<directory>${basedir}/src</directory> |
|
<includes> |
|
<include>**/*</include> |
|
</includes> |
|
<outputDirectory></outputDirectory> |
|
</fileSet> |
|
</fileSets> |
|
</assembly>
|
|
|