diff options
author | Ruslan Kashapov <ruslan.kashapov@pantheon.tech> | 2021-03-04 17:13:00 +0200 |
---|---|---|
committer | Ruslan Kashapov <ruslan.kashapov@pantheon.tech> | 2021-03-04 17:20:02 +0200 |
commit | 8fe579d7d1b802e9d91205c7ff991631ea35f7ac (patch) | |
tree | 5dfe8445ef64cc0f9f37092f0753e29cdd38fa6e /cps-application | |
parent | 4359d28773708cf63410539fae5f5eae4105d4f0 (diff) |
Fix cps-nf-proxy standalone assembly.
Application dependency on cps-ri module moved from cps-rest module (indirect)
to cps-application (direct, using assembly profiles)
Issue-ID: CPS-274
Change-Id: Id246dc4c6d15343e4862f70151aa82c5020862c9
Signed-off-by: Ruslan Kashapov <ruslan.kashapov@pantheon.tech>
Diffstat (limited to 'cps-application')
-rw-r--r-- | cps-application/pom.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cps-application/pom.xml b/cps-application/pom.xml index cfebf68874..9a7d2f8e33 100644 --- a/cps-application/pom.xml +++ b/cps-application/pom.xml @@ -124,6 +124,10 @@ <groupId>${project.groupId}</groupId> <artifactId>cps-rest</artifactId> </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>cps-ri</artifactId> + </dependency> </dependencies> <build> <plugins> @@ -149,6 +153,10 @@ <groupId>${project.groupId}</groupId> <artifactId>cps-nf-proxy-rest</artifactId> </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>cps-ri</artifactId> + </dependency> </dependencies> <build> <plugins> @@ -178,6 +186,10 @@ <groupId>${project.groupId}</groupId> <artifactId>cps-nf-proxy-rest</artifactId> </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>cps-ri</artifactId> + </dependency> </dependencies> <build> <plugins> |