aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@est.tech>2022-04-12 19:37:14 +0100
committerliamfallon <liam.fallon@est.tech>2022-04-12 19:37:18 +0100
commit619b668df2f206b5632b0c66ae7f1753dfbe6c5c (patch)
tree6d5085300f21e6cd6fffae42658b0fcdfc79210f
parent30720482ecc86fffe0d5e663061a65bf29a2a386 (diff)
Fix CLAMP staging example dependency
The internal dependencies in CLAMP did not have the dependency from models and runtime to examples. Issue-ID: POLICY-4089 Change-Id: I0ce3176b5a346b1a8efdbc65e4773dd5f212b9fd Signed-off-by: liamfallon <liam.fallon@est.tech>
-rw-r--r--models/pom.xml5
-rw-r--r--runtime/pom.xml5
2 files changed, 10 insertions, 0 deletions
diff --git a/models/pom.xml b/models/pom.xml
index 71fbdb15d..91935dc5e 100644
--- a/models/pom.xml
+++ b/models/pom.xml
@@ -35,6 +35,11 @@
<dependencies>
<dependency>
+ <groupId>org.onap.policy.clamp</groupId>
+ <artifactId>policy-clamp-examples</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>${version.springboot}</version>
diff --git a/runtime/pom.xml b/runtime/pom.xml
index 2cb8e9a1d..d8a649538 100644
--- a/runtime/pom.xml
+++ b/runtime/pom.xml
@@ -158,6 +158,11 @@
</dependencyManagement>
<dependencies>
<dependency>
+ <groupId>org.onap.policy.clamp</groupId>
+ <artifactId>policy-clamp-examples</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
</dependency>