blob: 7a4c14f1135b94c86c83b16664d4459663739295 [file] [log] [blame]
Hengyeb150aa82019-03-25 14:32:21 +00001<?xml version="1.0" encoding="UTF-8"?>
eikrwaq67037d02018-05-23 17:17:58 +01002<!--
3 ============LICENSE_START=======================================================
4 Copyright (C) 2018 Ericsson. All rights reserved.
waynedunican303d4242022-01-27 07:10:46 +00005 Copyright (C) 2019-2020, 2022 Nordix Foundation.
Jim Hahn106d6ff2021-03-12 09:39:42 -05006 Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
Ram Krishna Vermae5550392020-04-03 13:35:33 -04007 Modifications Copyright (C) 2020 Bell Canada.
eikrwaq67037d02018-05-23 17:17:58 +01008 ================================================================================
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=========================================================
ramvermab359a4b2019-06-27 11:11:24 +000023-->
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">
eikrwaq67037d02018-05-23 17:17:58 +010026 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <groupId>org.onap.policy.parent</groupId>
29 <artifactId>integration</artifactId>
liamfallon3678c752022-11-21 17:39:37 +000030 <version>3.6.1</version>
ramvermab359a4b2019-06-27 11:11:24 +000031 <relativePath />
eikrwaq67037d02018-05-23 17:17:58 +010032 </parent>
33
34 <groupId>org.onap.policy.models</groupId>
35 <artifactId>policy-models</artifactId>
liamfallondfc241e2022-10-21 08:05:56 +010036 <version>2.7.2-SNAPSHOT</version>
Pamela Dragoshf973f582018-09-25 10:06:07 -040037
eikrwaq67037d02018-05-23 17:17:58 +010038 <packaging>pom</packaging>
Pamela Dragoshd01b3fa2018-05-25 08:17:28 -040039 <name>policy-models</name>
liamfallonaa317c72019-02-05 13:41:59 +000040 <description>This repo holds model code agnostic to PDP engines</description>
eikrwaq67037d02018-05-23 17:17:58 +010041
Pamela Dragoshf973f582018-09-25 10:06:07 -040042 <properties>
liamfallonb694be12019-03-05 09:35:16 +000043 <derby.version>10.13.1.1</derby.version>
HOCKLA754f9a02019-12-21 12:11:33 -060044 <javax.ws.rs-api.version>2.1.1</javax.ws.rs-api.version>
liamfallon3678c752022-11-21 17:39:37 +000045 <policy.common.version>1.11.1</policy.common.version>
Pamela Dragoshf973f582018-09-25 10:06:07 -040046 </properties>
47
48 <modules>
liamfallonf240fda2019-02-26 13:57:39 +000049 <module>models-base</module>
50 <module>models-dao</module>
liamfallonb694be12019-03-05 09:35:16 +000051 <module>models-tosca</module>
ramverma59483882019-03-12 22:15:38 +000052 <module>models-pap</module>
Jim Hahna4b62b82019-03-21 09:54:30 -040053 <module>models-pdp</module>
Pamela Dragosh99837f42019-03-21 09:58:52 -040054 <module>models-errors</module>
Pamela Dragosh2d4d2992019-03-16 17:17:37 -040055 <module>models-decisions</module>
liamfallon4c28d2c2019-03-14 10:01:58 +000056 <module>models-provider</module>
liamfallon9727c322019-03-19 16:29:56 +000057 <module>models-examples</module>
Hengyeb150aa82019-03-25 14:32:21 +000058 <module>models-interactions</module>
liamfallon90092032019-04-17 13:58:26 +000059 <module>models-sim</module>
Pamela Dragoshf973f582018-09-25 10:06:07 -040060 </modules>
61
eikrwaq67037d02018-05-23 17:17:58 +010062 <distributionManagement>
63 <site>
64 <id>ecomp-site</id>
Pamela Dragoshf973f582018-09-25 10:06:07 -040065 <url>dav:${nexusproxy}${sitePath}</url>
eikrwaq67037d02018-05-23 17:17:58 +010066 </site>
67 </distributionManagement>
Pamela Dragoshf973f582018-09-25 10:06:07 -040068
liamfallonb694be12019-03-05 09:35:16 +000069 <dependencies>
70 <dependency>
71 <groupId>org.onap.policy.common</groupId>
72 <artifactId>utils</artifactId>
73 </dependency>
74
75 <dependency>
76 <groupId>org.slf4j</groupId>
77 <artifactId>slf4j-api</artifactId>
78 </dependency>
79
80 <dependency>
liamfallon9727c322019-03-19 16:29:56 +000081 <groupId>ch.qos.logback</groupId>
82 <artifactId>logback-core</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>ch.qos.logback</groupId>
86 <artifactId>logback-classic</artifactId>
87 </dependency>
88
89 <dependency>
liamfallonb694be12019-03-05 09:35:16 +000090 <groupId>org.projectlombok</groupId>
91 <artifactId>lombok</artifactId>
92 <scope>provided</scope>
93 </dependency>
94
95 <dependency>
96 <groupId>com.google.code.gson</groupId>
97 <artifactId>gson</artifactId>
98 </dependency>
99
100 <dependency>
liamfallon8fdf84c2019-03-15 12:36:38 +0000101 <groupId>org.yaml</groupId>
102 <artifactId>snakeyaml</artifactId>
liamfallon8fdf84c2019-03-15 12:36:38 +0000103 </dependency>
104
105 <dependency>
liamfallon4c28d2c2019-03-14 10:01:58 +0000106 <groupId>javax.ws.rs</groupId>
107 <artifactId>javax.ws.rs-api</artifactId>
108 <version>${javax.ws.rs-api.version}</version>
109 </dependency>
110
111 <dependency>
liamfallon24400f72019-04-10 11:34:06 +0000112 <groupId>org.mariadb.jdbc</groupId>
113 <artifactId>mariadb-java-client</artifactId>
114 </dependency>
115
116 <dependency>
waynedunican303d4242022-01-27 07:10:46 +0000117 <groupId>org.postgresql</groupId>
118 <artifactId>postgresql</artifactId>
119 </dependency>
120
121 <dependency>
liamfallon18555712019-11-01 11:24:26 +0000122 <groupId>org.eclipse.persistence</groupId>
123 <artifactId>eclipselink</artifactId>
124 </dependency>
125
126 <dependency>
liamfallonb694be12019-03-05 09:35:16 +0000127 <groupId>junit</groupId>
128 <artifactId>junit</artifactId>
129 <scope>test</scope>
130 </dependency>
131
132 <dependency>
Pamela Dragosh99837f42019-03-21 09:58:52 -0400133 <groupId>org.assertj</groupId>
134 <artifactId>assertj-core</artifactId>
135 <scope>test</scope>
136 </dependency>
137
138 <dependency>
ramvermab359a4b2019-06-27 11:11:24 +0000139 <groupId>org.onap.policy.common</groupId>
140 <artifactId>utils-test</artifactId>
141 <version>${policy.common.version}</version>
142 <scope>test</scope>
143 </dependency>
HOCKLA754f9a02019-12-21 12:11:33 -0600144 <dependency>
145 <groupId>com.openpojo</groupId>
146 <artifactId>openpojo</artifactId>
147 <scope>test</scope>
148 </dependency>
liamfallon18555712019-11-01 11:24:26 +0000149
150 <dependency>
151 <groupId>org.glassfish.jersey.inject</groupId>
152 <artifactId>jersey-hk2</artifactId>
153 </dependency>
HOCKLA754f9a02019-12-21 12:11:33 -0600154 <dependency>
155 <groupId>org.eclipse.jetty</groupId>
156 <artifactId>jetty-server</artifactId>
157 </dependency>
158 <dependency>
159 <groupId>org.eclipse.jetty</groupId>
160 <artifactId>jetty-security</artifactId>
HOCKLA754f9a02019-12-21 12:11:33 -0600161 </dependency>
162 <dependency>
163 <groupId>org.eclipse.jetty</groupId>
164 <artifactId>jetty-servlet</artifactId>
165 </dependency>
166 <dependency>
167 <groupId>org.glassfish.jersey.containers</groupId>
168 <artifactId>jersey-container-servlet</artifactId>
169 <version>${version.jersey}</version>
170 </dependency>
171 <dependency>
172 <groupId>org.apache.httpcomponents</groupId>
173 <artifactId>httpclient</artifactId>
174 </dependency>
175 <dependency>
176 <groupId>io.swagger</groupId>
177 <artifactId>swagger-annotations</artifactId>
178 <version>${version.swagger}</version>
179 </dependency>
180 <dependency>
HOCKLA754f9a02019-12-21 12:11:33 -0600181 <groupId>org.apache.commons</groupId>
182 <artifactId>commons-collections4</artifactId>
183 <version>4.4</version>
184 </dependency>
185 <dependency>
186 <groupId>com.att.nsa</groupId>
187 <artifactId>cambriaClient</artifactId>
188 </dependency>
189 <dependency>
190 <groupId>org.glassfish</groupId>
191 <artifactId>javax.json</artifactId>
192 <version>${version.javax.json}</version>
193 </dependency>
liamfallonb694be12019-03-05 09:35:16 +0000194 </dependencies>
195
liamfallonf240fda2019-02-26 13:57:39 +0000196 <dependencyManagement>
197 <dependencies>
198 <dependency>
199 <groupId>org.onap.policy.common</groupId>
200 <artifactId>utils</artifactId>
201 <version>${policy.common.version}</version>
202 </dependency>
203 </dependencies>
204 </dependencyManagement>
Pamela Dragoshada55be2019-04-05 21:07:07 -0400205</project>