1
0
mirror of https://github.com/Rogiel/httpchannel synced 2025-12-05 23:22:51 +00:00
Files
httpchannel/src/assembly/distribution.xml
2012-01-24 14:49:54 -02:00

44 lines
1.1 KiB
XML

<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>bin</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>true</includeBaseDirectory>
<fileSets>
<fileSet>
<includes>
<include>NOTICE</include>
<include>LICENSE</include>
</includes>
<lineEnding>crlf</lineEnding>
</fileSet>
</fileSets>
<files>
<file>
<destName>README</destName>
<source>README.md</source>
<lineEnding>crlf</lineEnding>
</file>
</files>
<moduleSets>
<moduleSet>
<useAllReactorProjects>true</useAllReactorProjects>
<binaries>
<includeDependencies>true</includeDependencies>
<unpack>false</unpack>
</binaries>
</moduleSet>
</moduleSets>
<dependencySets>
<dependencySet>
<outputDirectory>libs/</outputDirectory>
</dependencySet>
</dependencySets>
</assembly>