20 lines
624 B
XML
20 lines
624 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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>assembly</id>
|
||
|
<formats>
|
||
|
<format>zip</format>
|
||
|
</formats>
|
||
|
<includeBaseDirectory>false</includeBaseDirectory>
|
||
|
|
||
|
<fileSets>
|
||
|
<fileSet>
|
||
|
<directory>dist/</directory>
|
||
|
<outputDirectory>/</outputDirectory>
|
||
|
<filtered>false</filtered>
|
||
|
</fileSet>
|
||
|
</fileSets>
|
||
|
|
||
|
</assembly>
|