diff options
author | Michael Dürre <michael.duerre@highstreet-technologies.com> | 2020-02-26 06:41:50 +0100 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2020-02-27 14:52:20 +0000 |
commit | ee75b19ee79f49b28a3137b6dcfdf02d6120f3de (patch) | |
tree | 49a6a7b10578ee5f9780ea38f8a9408cf4cf14c7 /sdnr/wt/featureaggregator/installer/pom.xml | |
parent | 8f762f215f49fd4b1d498adc2cc4f98093f0ddf3 (diff) |
add data migration tool
add tool for data migration and initialization
Issue-ID: SDNC-1085
Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com>
Change-Id: Ibd1ffeffa95d2897ae65f7d964e98941d810ffcb
Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com>
Diffstat (limited to 'sdnr/wt/featureaggregator/installer/pom.xml')
-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> |