Update snapshot and/or references of policy/models to latest snapshots
[policy/models.git] / models-interactions / model-impl / aai / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   aai
4   ================================================================================
5   Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
6   Modifications Copyright (C) 2019, 2023-2024 Nordix Foundation.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License");
9   you may not use this file except in compliance with the License.
10   You may obtain a copy of the License at
11
12        http://www.apache.org/licenses/LICENSE-2.0
13
14   Unless required by applicable law or agreed to in writing, software
15   distributed under the License is distributed on an "AS IS" BASIS,
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   See the License for the specific language governing permissions and
18   limitations under the License.
19   ============LICENSE_END=========================================================
20   -->
21
22
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26
27     <parent>
28         <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
29         <artifactId>model-impl</artifactId>
30         <version>3.1.3-SNAPSHOT</version>
31     </parent>
32
33     <artifactId>aai</artifactId>
34
35     <dependencies>
36         <dependency>
37             <groupId>com.google.code.gson</groupId>
38             <artifactId>gson</artifactId>
39             <scope>provided</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.json</groupId>
43             <artifactId>json</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.onap.policy.common</groupId>
47             <artifactId>utils</artifactId>
48             <version>${policy.common.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
52             <artifactId>rest</artifactId>
53             <version>${project.version}</version>
54         </dependency>
55         <dependency>
56             <groupId>org.onap.policy.common</groupId>
57             <artifactId>policy-endpoints</artifactId>
58             <version>${policy.common.version}</version>
59             <scope>provided</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.onap.aai.schema-service</groupId>
63             <artifactId>aai-schema</artifactId>
64             <version>1.12.3</version>
65             <exclusions>
66                 <exclusion>
67                     <groupId>com.google.code.javaparser</groupId>
68                     <artifactId>javaparser</artifactId>
69                 </exclusion>
70                 <exclusion>
71                     <groupId>com.googlecode.json-simple</groupId>
72                     <artifactId>json-simple</artifactId>
73                 </exclusion>
74             </exclusions>
75         </dependency>
76         <dependency>
77             <groupId>org.mockito</groupId>
78             <artifactId>mockito-core</artifactId>
79             <scope>test</scope>
80         </dependency>
81     </dependencies>
82 </project>