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>
diff --git a/models/pom.xml b/models/pom.xml
index 71fbdb1..91935dc 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 2cb8e9a..d8a6495 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>