Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 9005 |
manish.sha |
1 |
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
|
|
2 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
3 |
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
|
|
4 |
<id>dependencies</id>
|
|
|
5 |
<formats>
|
|
|
6 |
<format>tar.gz</format>
|
|
|
7 |
</formats>
|
|
|
8 |
<includeBaseDirectory>false</includeBaseDirectory>
|
|
|
9 |
<dependencySets>
|
|
|
10 |
<dependencySet>
|
|
|
11 |
<outputDirectory>/</outputDirectory>
|
|
|
12 |
<useProjectArtifact>false</useProjectArtifact>
|
|
|
13 |
<unpack>false</unpack>
|
|
|
14 |
<scope>runtime</scope>
|
|
|
15 |
</dependencySet>
|
|
|
16 |
</dependencySets>
|
|
|
17 |
<fileSets>
|
|
|
18 |
<fileSet>
|
|
|
19 |
<directory>./src/main/assembly</directory>
|
|
|
20 |
<outputDirectory>./</outputDirectory>
|
|
|
21 |
<includes>
|
|
|
22 |
<include>README.dependencies</include>
|
|
|
23 |
</includes>
|
|
|
24 |
</fileSet>
|
|
|
25 |
</fileSets>
|
|
|
26 |
</assembly>
|