Update sdk version to load policies from a file mounted by policy sidecar container
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-test / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ================================================================================
4   ~ Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
5   ~ Copyright (c) 2021 Samsung Electronics. All rights reserved.
6   ~ ================================================================================
7   ~ Licensed under the Apache License, Version 2.0 (the "License");
8   ~ you may not use this file except in compliance with the License.
9   ~ You may obtain a copy of the License at
10   ~
11   ~      http://www.apache.org/licenses/LICENSE-2.0
12   ~
13   ~ Unless required by applicable law or agreed to in writing, software
14   ~ distributed under the License is distributed on an "AS IS" BASIS,
15   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   ~ See the License for the specific language governing permissions and
17   ~ limitations under the License.
18   ~ ============LICENSE_END=========================================================
19   ~
20   -->
21
22 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23          xmlns="http://maven.apache.org/POM/4.0.0"
24          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25
26     <modelVersion>4.0.0</modelVersion>
27
28     <parent>
29         <groupId>org.onap.dcaegen2.analytics.tca-gen2</groupId>
30         <artifactId>dcae-analytics</artifactId>
31         <version>1.3.1-SNAPSHOT</version>
32     </parent>
33
34     <artifactId>dcae-analytics-test</artifactId>
35     <packaging>jar</packaging>
36
37     <!-- THIS MODULE CONTAINS COMMON TESTING CODE AND MUST NEVER BE DEPLOYED IN PRODUCTION ENVIRONMENT -->
38     <name>DCAE Analytics Test</name>
39     <description>Contains common testing code for all DCAE Analytics Modules</description>
40
41     <properties>
42         <main.basedir>${project.parent.basedir}</main.basedir>
43     </properties>
44
45     <dependencies>
46
47         <!-- LOGGING -->
48         <dependency>
49             <groupId>ch.qos.logback</groupId>
50             <artifactId>logback-classic</artifactId>
51             <scope>compile</scope>
52         </dependency>
53
54         <!-- SPRING TEST DEPENDENCIES -->
55         <dependency>
56             <groupId>org.springframework.boot</groupId>
57             <artifactId>spring-boot-starter-test</artifactId>
58             <scope>compile</scope>
59             <exclusions>
60                 <exclusion>
61                     <groupId>junit</groupId>
62                     <artifactId>junit</artifactId>
63                 </exclusion>
64                 <exclusion>
65                     <groupId>org.junit.vintage</groupId>
66                     <artifactId>junit-vintage-engine</artifactId>
67                 </exclusion>
68                             <exclusion>
69                               <groupId>org.mockito</groupId>
70                               <artifactId>mockito-core</artifactId>
71                             </exclusion>
72                 </exclusions>
73         </dependency>
74
75         <!-- JSON SERIALIZATION/DESERIALIZATION LIBRARY -->
76         <dependency>
77             <groupId>com.fasterxml.jackson.core</groupId>
78             <artifactId>jackson-databind</artifactId>
79             <scope>compile</scope>
80         </dependency>
81         <dependency>
82             <groupId>com.fasterxml.jackson.core</groupId>
83             <artifactId>jackson-core</artifactId>
84             <scope>compile</scope>
85         </dependency>
86         <dependency>
87            <groupId>com.fasterxml.jackson.dataformat</groupId>
88            <artifactId>jackson-dataformat-smile</artifactId>
89             <scope>compile</scope>
90         </dependency>
91
92         <!-- JUNIT 5 DEPENDENCIES -->
93         <dependency>
94             <groupId>org.junit.jupiter</groupId>
95             <artifactId>junit-jupiter-api</artifactId>
96             <scope>compile</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.junit.jupiter</groupId>
100             <artifactId>junit-jupiter-engine</artifactId>
101             <scope>compile</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.junit.platform</groupId>
105             <artifactId>junit-platform-engine</artifactId>
106             <scope>compile</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.junit.jupiter</groupId>
110             <artifactId>junit-jupiter-params</artifactId>
111             <scope>compile</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.junit.platform</groupId>
115             <artifactId>junit-platform-launcher</artifactId>
116             <scope>compile</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.apiguardian</groupId>
120             <artifactId>apiguardian-api</artifactId>
121             <scope>compile</scope>
122         </dependency>
123         <!-- MOCKING FRAMEWORK -->
124             <dependency>
125                 <groupId>org.mockito</groupId>
126                 <artifactId>mockito-core</artifactId>
127                 <scope>compile</scope>
128             </dependency>
129
130         <!-- ASSERTION UTILITIES -->
131         <dependency>
132             <groupId>org.assertj</groupId>
133             <artifactId>assertj-core</artifactId>
134             <scope>compile</scope>
135         </dependency>
136         <dependency>
137             <groupId>org.skyscreamer</groupId>
138             <artifactId>jsonassert</artifactId>
139             <scope>compile</scope>
140         </dependency>
141     </dependencies>
142
143 </project>