]> git.somenet.org - pub/jan/lsdc.git/blob - maven/zipDeps.xml
readded maven for QA purpose AND easier integration with Jenkins.
[pub/jan/lsdc.git] / maven / zipDeps.xml
1 <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
3   <id>with-deps</id>
4   <formats>
5     <format>zip</format>
6   </formats>
7   <fileSets>
8     <fileSet>
9       <directory>${project.build.directory}/lib</directory>
10     </fileSet>
11     <fileSet>
12       <includes>
13         <include>${project.build.directory}/*.jar</include>
14       </includes>
15     </fileSet>
16   </fileSets>
17 </assembly>