aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@est.tech>2019-02-26 13:57:39 +0000
committerliamfallon <liam.fallon@est.tech>2019-02-28 10:32:01 +0000
commitf240fda5e8f7e940d6033b204c2dac48a9dc7c4e (patch)
tree98f16f96a2ef8ced0895ae1aaa09c021a96f15f0 /pom.xml
parent9ddbc872354eb5399bab9d9c23188b4be98d7dd7 (diff)
Add basic model object concepts
This review introduces the basic concepts that all model objects inherit from. Using this approach, all concepts that inherit from these types can use standardized DAO handling and marrshal/unmarshal handling This approach is a more generic version of the approach used in the APEX PDP for model handling. The APEX model handling will inherit this module. Issue-ID: POLICY-1264 Change-Id: I35b76659ab66cf3f33bee59a5528e49c7edf7796 Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml14
1 files changed, 12 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index bb299c46d..f3377260f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,6 @@
<groupId>org.onap.policy.parent</groupId>
<artifactId>integration</artifactId>
<version>2.1.0-SNAPSHOT</version>
- <relativePath />
</parent>
<groupId>org.onap.policy.models</groupId>
@@ -35,7 +34,6 @@
<version>2.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
-
<name>policy-models</name>
<description>This repo holds model code agnostic to PDP engines</description>
@@ -51,6 +49,8 @@
<modules>
<module>platform</module>
+ <module>models-base</module>
+ <module>models-dao</module>
</modules>
<dependencies>
@@ -68,6 +68,16 @@
</site>
</distributionManagement>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.onap.policy.common</groupId>
+ <artifactId>utils</artifactId>
+ <version>${policy.common.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
<build>
<plugins>
<plugin>