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