Set all cross references of policy/models
[policy/models.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index cb3d545..a0fbd51 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -1,6 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
   ============LICENSE_START=======================================================
    Copyright (C) 2018 Ericsson. All rights reserved.
+   Copyright (C) 2019-2020, 2022-2024 Nordix Foundation.
+   Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
+   Modifications Copyright (C) 2020 Bell Canada.
   ================================================================================
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   SPDX-License-Identifier: Apache-2.0
   ============LICENSE_END=========================================================
 -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.onap.policy.parent</groupId>
         <artifactId>integration</artifactId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>5.0.0-SNAPSHOT</version>
+        <relativePath />
     </parent>
 
     <groupId>org.onap.policy.models</groupId>
     <artifactId>policy-models</artifactId>
-    <version>2.0.0-SNAPSHOT</version>
+    <version>4.0.0-SNAPSHOT</version>
+
     <packaging>pom</packaging>
-    <name>Policy Models</name>
-    <description>This repo will hold model code agnostic to PDP engines</description>
+    <name>policy-models</name>
+    <description>This repo holds model code agnostic to PDP engines</description>
+
+    <properties>
+        <policy.common.version>3.0.0-SNAPSHOT</policy.common.version>
+    </properties>
+
+    <modules>
+        <module>models-base</module>
+        <module>models-dao</module>
+        <module>models-tosca</module>
+        <module>models-pap</module>
+        <module>models-pdp</module>
+        <module>models-errors</module>
+        <module>models-decisions</module>
+        <module>models-provider</module>
+        <module>models-examples</module>
+        <module>models-interactions</module>
+        <module>models-sim</module>
+    </modules>
 
     <distributionManagement>
         <site>
             <id>ecomp-site</id>
-            <url>dav:${onap.nexus.url}${sitePath}</url>
+            <url>dav:${nexusproxy}${sitePath}</url>
         </site>
     </distributionManagement>
-</project>
\ No newline at end of file
+
+    <dependencies>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mariadb.jdbc</groupId>
+            <artifactId>mariadb-java-client</artifactId>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.postgresql</groupId>
+            <artifactId>postgresql</artifactId>
+            <scope>runtime</scope>
+        </dependency>
+    </dependencies>
+</project>