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