Update snapshot and/or references of policy/models to latest snapshots
[policy/models.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4    Copyright (C) 2018 Ericsson. All rights reserved.
5    Copyright (C) 2019-2020, 2022-2024 Nordix Foundation.
6    Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
7    Modifications Copyright (C) 2020 Bell Canada.
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12
13        http://www.apache.org/licenses/LICENSE-2.0
14
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20
21   SPDX-License-Identifier: Apache-2.0
22   ============LICENSE_END=========================================================
23 -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26     <modelVersion>4.0.0</modelVersion>
27     <parent>
28         <groupId>org.onap.policy.parent</groupId>
29         <artifactId>integration</artifactId>
30         <version>4.1.2-SNAPSHOT</version>
31         <relativePath />
32     </parent>
33
34     <groupId>org.onap.policy.models</groupId>
35     <artifactId>policy-models</artifactId>
36     <version>3.1.2-SNAPSHOT</version>
37
38     <packaging>pom</packaging>
39     <name>policy-models</name>
40     <description>This repo holds model code agnostic to PDP engines</description>
41
42     <properties>
43         <policy.common.version>2.1.2-SNAPSHOT</policy.common.version>
44     </properties>
45
46     <modules>
47         <module>models-base</module>
48         <module>models-dao</module>
49         <module>models-tosca</module>
50         <module>models-pap</module>
51         <module>models-pdp</module>
52         <module>models-errors</module>
53         <module>models-decisions</module>
54         <module>models-provider</module>
55         <module>models-examples</module>
56         <module>models-interactions</module>
57         <module>models-sim</module>
58     </modules>
59
60     <distributionManagement>
61         <site>
62             <id>ecomp-site</id>
63             <url>dav:${nexusproxy}${sitePath}</url>
64         </site>
65     </distributionManagement>
66
67     <dependencies>
68         <dependency>
69             <groupId>org.slf4j</groupId>
70             <artifactId>slf4j-api</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>junit</groupId>
74             <artifactId>junit</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.mariadb.jdbc</groupId>
79             <artifactId>mariadb-java-client</artifactId>
80             <scope>runtime</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.postgresql</groupId>
84             <artifactId>postgresql</artifactId>
85             <scope>runtime</scope>
86         </dependency>
87     </dependencies>
88 </project>