diff options
Diffstat (limited to 'sdnr/wt/data-provider/installer/pom.xml')
-rwxr-xr-x | sdnr/wt/data-provider/installer/pom.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sdnr/wt/data-provider/installer/pom.xml b/sdnr/wt/data-provider/installer/pom.xml index 7e66a381f..6dfbc9b97 100755 --- a/sdnr/wt/data-provider/installer/pom.xml +++ b/sdnr/wt/data-provider/installer/pom.xml @@ -64,6 +64,12 @@ <artifactId>${application.name}-provider</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> + <artifactId>${application.name}-setup</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> <build> @@ -116,6 +122,24 @@ <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}/../setup/target</directory> + <includes> + <include>sdnr-dmt.jar</include> + </includes> + </resource> + </resources> + </configuration> + </execution> + <execution> <id>copy-schemas</id> <goals> <goal>copy-resources</goal> |