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