1
0
mirror of https://github.com/Rogiel/httpchannel synced 2025-12-06 07:32:50 +00:00

Improves deploying

This commit is contained in:
2012-01-24 14:49:54 -02:00
parent 4c2a7a5810
commit 000db710cd
2 changed files with 113 additions and 46 deletions

View File

@@ -0,0 +1,44 @@
<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>