update parent,common references in policy/models pom
[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-2023 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.0</version>
31         <relativePath />
32     </parent>
33
34     <groupId>org.onap.policy.models</groupId>
35     <artifactId>policy-models</artifactId>
36     <version>3.1.0-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.0</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.onap.policy.common</groupId>
70             <artifactId>utils</artifactId>
71             <version>${policy.common.version}</version>
72         </dependency>
73         <dependency>
74             <groupId>org.onap.policy.common</groupId>
75             <artifactId>utils-test</artifactId>
76             <version>${policy.common.version}</version>
77             <scope>test</scope>
78         </dependency>
79
80         <dependency>
81             <groupId>org.slf4j</groupId>
82             <artifactId>slf4j-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>ch.qos.logback</groupId>
86             <artifactId>logback-core</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>ch.qos.logback</groupId>
90             <artifactId>logback-classic</artifactId>
91         </dependency>
92
93         <dependency>
94             <groupId>org.projectlombok</groupId>
95             <artifactId>lombok</artifactId>
96             <scope>provided</scope>
97         </dependency>
98
99         <dependency>
100             <groupId>com.google.code.gson</groupId>
101             <artifactId>gson</artifactId>
102         </dependency>
103
104         <dependency>
105             <groupId>org.yaml</groupId>
106             <artifactId>snakeyaml</artifactId>
107         </dependency>
108
109         <dependency>
110             <groupId>org.mariadb.jdbc</groupId>
111             <artifactId>mariadb-java-client</artifactId>
112         </dependency>
113
114         <dependency>
115             <groupId>org.postgresql</groupId>
116             <artifactId>postgresql</artifactId>
117         </dependency>
118
119         <dependency>
120             <groupId>jakarta.ws.rs</groupId>
121             <artifactId>jakarta.ws.rs-api</artifactId>
122         </dependency>
123
124         <dependency>
125             <groupId>org.glassfish.jersey.inject</groupId>
126             <artifactId>jersey-hk2</artifactId>
127             <version>${version.jersey}</version>
128         </dependency>
129         <dependency>
130             <groupId>org.eclipse.jetty</groupId>
131             <artifactId>jetty-server</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.eclipse.jetty</groupId>
135             <artifactId>jetty-security</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>org.eclipse.jetty</groupId>
139             <artifactId>jetty-servlet</artifactId>
140             <version>${version.jetty}</version>
141         </dependency>
142         <dependency>
143             <groupId>org.glassfish.jersey.containers</groupId>
144             <artifactId>jersey-container-servlet</artifactId>
145             <version>${version.jersey}</version>
146         </dependency>
147         <dependency>
148             <groupId>junit</groupId>
149             <artifactId>junit</artifactId>
150             <scope>test</scope>
151         </dependency>
152         <dependency>
153             <groupId>org.mockito</groupId>
154             <artifactId>mockito-core</artifactId>
155             <scope>test</scope>
156         </dependency>
157         <dependency>
158             <groupId>org.assertj</groupId>
159             <artifactId>assertj-core</artifactId>
160             <scope>test</scope>
161         </dependency>
162         <dependency>
163             <groupId>com.openpojo</groupId>
164             <artifactId>openpojo</artifactId>
165             <scope>test</scope>
166         </dependency>
167         <dependency>
168             <groupId>org.apache.httpcomponents.client5</groupId>
169             <artifactId>httpclient5</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>org.apache.commons</groupId>
173             <artifactId>commons-collections4</artifactId>
174         </dependency>
175         <dependency>
176             <groupId>com.att.nsa</groupId>
177             <artifactId>cambriaClient</artifactId>
178         </dependency>
179     </dependencies>
180
181     <dependencyManagement>
182         <dependencies>
183             <dependency>
184                 <groupId>org.onap.policy.common</groupId>
185                 <artifactId>utils</artifactId>
186                 <version>${policy.common.version}</version>
187             </dependency>
188         </dependencies>
189     </dependencyManagement>
190 </project>