diff options
Diffstat (limited to 'sdnr/wt/featureaggregator/installer')
-rwxr-xr-x | sdnr/wt/featureaggregator/installer/pom.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sdnr/wt/featureaggregator/installer/pom.xml b/sdnr/wt/featureaggregator/installer/pom.xml index 2109a4089..b993ad7ad 100755 --- a/sdnr/wt/featureaggregator/installer/pom.xml +++ b/sdnr/wt/featureaggregator/installer/pom.xml @@ -145,6 +145,30 @@ </execution> </executions> </plugin> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <version>2.6</version> + <executions> + <execution> + <id>copy-sdnr-data-migration-tool</id> + <goals> + <goal>copy-resources</goal> + </goals> + <phase>validate</phase> + <configuration> + <outputDirectory>${project.build.directory}/assembly/system/org/onap/ccsdk/features/sdnr/wt/sdnr-wt-data-provider-setup/${project.version}</outputDirectory> + <resources> + <resource> + <directory>${basedir}/../../data-provider/setup/target</directory> + <includes> + <include>sdnr-dmt.jar</include> + </includes> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> </project> |