ea2ca88014c2d05318753941aff1287151a218c2
[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     </properties>
47
48     <dependencies>
49
50         <!-- LOGGING -->
51         <dependency>
52             <groupId>ch.qos.logback</groupId>
53             <artifactId>logback-classic</artifactId>
54             <scope>compile</scope>
55         </dependency>
56
57         <!-- SPRING TEST DEPENDENCIES -->
58         <dependency>
59             <groupId>org.springframework.boot</groupId>
60             <artifactId>spring-boot-starter-test</artifactId>
61             <scope>compile</scope>
62             <exclusions>
63                 <exclusion>
64                     <groupId>junit</groupId>
65                     <artifactId>junit</artifactId>
66                 </exclusion>
67                 <exclusion>
68                     <groupId>org.junit.vintage</groupId>
69                     <artifactId>junit-vintage-engine</artifactId>
70                 </exclusion>
71                 <exclusion>
72                     <groupId>org.mockito</groupId>
73                     <artifactId>mockito-core</artifactId>
74                 </exclusion>
75             </exclusions>
76         </dependency>
77
78         <!-- JSON SERIALIZATION/DESERIALIZATION LIBRARY -->
79         <dependency>
80             <groupId>com.fasterxml.jackson.core</groupId>
81             <artifactId>jackson-databind</artifactId>
82             <scope>compile</scope>
83         </dependency>
84         <dependency>
85             <groupId>com.fasterxml.jackson.core</groupId>
86             <artifactId>jackson-core</artifactId>
87             <scope>compile</scope>
88         </dependency>
89         <dependency>
90            <groupId>com.fasterxml.jackson.dataformat</groupId>
91            <artifactId>jackson-dataformat-smile</artifactId>
92             <scope>compile</scope>
93         </dependency>
94
95         <!-- JUNIT 5 DEPENDENCIES -->
96         <dependency>
97             <groupId>org.junit.jupiter</groupId>
98             <artifactId>junit-jupiter-api</artifactId>
99             <scope>compile</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.junit.jupiter</groupId>
103             <artifactId>junit-jupiter-engine</artifactId>
104             <scope>compile</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.junit.platform</groupId>
108             <artifactId>junit-platform-engine</artifactId>
109             <scope>compile</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.junit.jupiter</groupId>
113             <artifactId>junit-jupiter-params</artifactId>
114             <scope>compile</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.junit.platform</groupId>
118             <artifactId>junit-platform-launcher</artifactId>
119             <scope>compile</scope>
120         </dependency>
121         <dependency>
122             <groupId>org.apiguardian</groupId>
123             <artifactId>apiguardian-api</artifactId>
124             <scope>compile</scope>
125         </dependency>
126         <!-- MOCKING FRAMEWORK -->
127             <dependency>
128                 <groupId>org.mockito</groupId>
129                 <artifactId>mockito-core</artifactId>
130                 <scope>compile</scope>
131             </dependency>
132
133         <!-- ASSERTION UTILITIES -->
134         <dependency>
135             <groupId>org.assertj</groupId>
136             <artifactId>assertj-core</artifactId>
137             <scope>compile</scope>
138         </dependency>
139         <dependency>
140             <groupId>org.skyscreamer</groupId>
141             <artifactId>jsonassert</artifactId>
142             <scope>compile</scope>
143         </dependency>
144     </dependencies>
145
146 </project>