srikanth | 116e6e8 | 2014-08-19 07:22:37 -0700 | [diff] [blame] | 1 | <assembly |
| 2 | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> |
| 5 | <id>osgipackage</id> |
| 6 | <formats> |
| 7 | <format>dir</format> |
| 8 | <format>zip</format> |
| 9 | </formats> |
| 10 | <includeBaseDirectory>false</includeBaseDirectory> |
| 11 | <fileSets> |
| 12 | <fileSet> |
| 13 | <directory>${project.build.directory}/generated-resources</directory> |
| 14 | <outputDirectory>/</outputDirectory> |
| 15 | </fileSet> |
| 16 | </fileSets> |
| 17 | <dependencySets> |
| 18 | <dependencySet> |
| 19 | <outputDirectory>opendaylight/plugins</outputDirectory> |
| 20 | <outputFileNameMapping> |
| 21 | ${artifact.groupId}.${artifact.artifactId}-${artifact.version}${dashClassifier?}.${artifact.extension} |
| 22 | </outputFileNameMapping> |
| 23 | <unpack>false</unpack> |
| 24 | <scope>runtime</scope> |
| 25 | <useTransitiveDependencies>false</useTransitiveDependencies> |
| 26 | </dependencySet> |
| 27 | </dependencySets> |
| 28 | </assembly> |