diff options
author | vasraz <vasyl.razinkov@est.tech> | 2023-07-03 12:38:48 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2023-07-05 21:23:31 +0000 |
commit | b92a895b00ec3efeceb341dc5779b45d35f0176b (patch) | |
tree | 5b8bb4080bc3162267c6d0cabb7bab5616170471 /catalog-be-plugins | |
parent | 0977894d34b43eba0846b23dd5bc4f186ca7edc2 (diff) |
Prepare to build docker images simultaneously
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: Iaac3e56906527c6bd65053c538b4b2889cbaac1d
Issue-ID: SDC-4547
Diffstat (limited to 'catalog-be-plugins')
-rw-r--r-- | catalog-be-plugins/backend-all-plugins/pom.xml | 9 | ||||
-rw-r--r-- | catalog-be-plugins/pom.xml | 12 |
2 files changed, 19 insertions, 2 deletions
diff --git a/catalog-be-plugins/backend-all-plugins/pom.xml b/catalog-be-plugins/backend-all-plugins/pom.xml index 599eb6d0b9..2839ee5ae0 100644 --- a/catalog-be-plugins/backend-all-plugins/pom.xml +++ b/catalog-be-plugins/backend-all-plugins/pom.xml @@ -39,7 +39,14 @@ limitations under the License. <docker.skip.tag>true</docker.skip.tag> <docker.skip>true</docker.skip> </properties> - + <dependencies> + <dependency> + <groupId>org.openecomp.sdc</groupId> + <artifactId>etsi-nfv-nsd-csar-plugin</artifactId> + <type>jar</type> + <version>${project.version}</version> + </dependency> + </dependencies> <profiles> <profile> <id>docker</id> diff --git a/catalog-be-plugins/pom.xml b/catalog-be-plugins/pom.xml index c71f2fa2f0..1fe5a2c1af 100644 --- a/catalog-be-plugins/pom.xml +++ b/catalog-be-plugins/pom.xml @@ -34,4 +34,14 @@ <module>etsi-nfv-nsd-csar-plugin</module> <module>backend-all-plugins</module> </modules> -</project>
\ No newline at end of file + + <dependencies> + <dependency> + <groupId>org.openecomp.sdc</groupId> + <artifactId>catalog-be</artifactId> + <version>${project.version}</version> + <type>war</type> + </dependency> + </dependencies> + +</project> |