diff options
author | Patrick Brady <pb071s@att.com> | 2018-08-20 10:30:28 -0700 |
---|---|---|
committer | Takamune Cho <tc012c@att.com> | 2018-08-21 12:38:07 +0000 |
commit | 92566aed18ea21c367e879c9f514b6dd66d1ce23 (patch) | |
tree | 494f598f077ead2cf9b7d89933865df463797f77 /appc-config/appc-config-params/installer/pom.xml | |
parent | 35d96dc1158349c647735b07de5895723f681623 (diff) |
Correct missing bundle
The appc-config-params feature requries a bundle
which is not already added to the installation zip
automatically.
Change-Id: I2e256b0e28024e4b59ff002b2297447c5e3f9d12
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-ID: APPC-1158
Diffstat (limited to 'appc-config/appc-config-params/installer/pom.xml')
-rw-r--r-- | appc-config/appc-config-params/installer/pom.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/appc-config/appc-config-params/installer/pom.xml b/appc-config/appc-config-params/installer/pom.xml index c58ce66f5..6ed458aaa 100644 --- a/appc-config/appc-config-params/installer/pom.xml +++ b/appc-config/appc-config-params/installer/pom.xml @@ -150,6 +150,41 @@ </execution> </executions> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <id>copy</id> + <goals> + <goal>copy</goal> + </goals> + <phase>prepare-package</phase> + <configuration> + <transitive>false</transitive> + <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> + <overWriteReleases>false</overWriteReleases> + <overWriteSnapshots>true</overWriteSnapshots> + <overWriteIfNewer>true</overWriteIfNewer> + <useRepositoryLayout>true</useRepositoryLayout> + <addParentPoms>false</addParentPoms> + <copyPom>false</copyPom> + <excludeGroupIds>org.opendaylight</excludeGroupIds> + <scope>provided</scope> + <artifactItems> + <artifactItem> + <groupId>org.yaml</groupId> + <artifactId>snakeyaml</artifactId> + <version>${snakeyaml.version}</version> + <type>jar</type> + <outputDirectory>${project.build.directory}/assembly/system/org/yaml/snakeyaml/${snakeyaml.version}</outputDirectory> + </artifactItem> + </artifactItems> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> </project> |