diff options
Diffstat (limited to 'integration-tests/pom.xml')
-rw-r--r-- | integration-tests/pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index ce38c9ee9c..bceb7bee2e 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -46,6 +46,7 @@ limitations under the License. <it.sdc.user>asdc_user</it.sdc.user> <it.sdc.password>Aa1234%^!</it.sdc.password> <it.chef.config>${project.build.directory}/chef-config</it.chef.config> + <it.sdc-be.plugins>${project.build.directory}/plugins/sdc-be</it.sdc-be.plugins> <it.shared.volume>/tmp/sdc-integration-tests</it.shared.volume> <it.docker.version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest </it.docker.version> @@ -267,6 +268,25 @@ limitations under the License. </resources> </configuration> </execution> + <execution> + <id>copy-sdc-be-plugins</id> + <phase>pre-integration-test</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${it.sdc-be.plugins}</outputDirectory> + <resources> + <resource> + <directory>../catalog-be-plugins/etsi-nfv-nsd-csar-plugin/target</directory> + <filtering>false</filtering> + <includes> + <include>etsi-nfv-nsd-csar-plugin-${version}.jar</include> + </includes> + </resource> + </resources> + </configuration> + </execution> </executions> </plugin> <plugin> @@ -537,6 +557,7 @@ limitations under the License. <bind> <volume>${it.chef.config}:/var/lib/jetty/chef-solo/environments</volume> <volume>${it.shared.volume}:/var/lib/jetty/logs</volume> + <volume>${it.sdc-be.plugins}:/var/lib/jetty/plugins</volume> </bind> </volumes> <wait> |