00613b57897055de05e87a8e286a2cb95b8ed13f
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-model / 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-model</artifactId>
38     <packaging>jar</packaging>
39
40     <!-- THIS MODULE CONTAINS MODELS COMMON FOR ALL DCAE ANALYTICS MODULES. 
41         NOTE: THIS MODULE MUST NOT DEPEND ON ANY OTHER ANALYTICS MODULE IN COMPILE 
42         SCOPE. -->
43     <name>DCAE Analytics Model</name>
44     <description>Contains models (e.g. Common Event Format) which are common to DCAE Analytics</description>
45
46     <properties>
47         <main.basedir>${project.parent.basedir}</main.basedir>
48         <sdk.version>1.8.6</sdk.version>
49         <immutable.version>2.7.1</immutable.version>
50         <onap-gerrit-review>-changelog-missing</onap-gerrit-review>
51     </properties>
52
53     <dependencies>
54
55         <!-- LOGGING API -->
56         <dependency>
57             <groupId>org.slf4j</groupId>
58             <artifactId>slf4j-api</artifactId>
59         </dependency>
60
61         <!-- JSON SERIALIZATION/DESERIALIZATION LIBRARY -->
62         <dependency>
63             <groupId>com.fasterxml.jackson.core</groupId>
64             <artifactId>jackson-databind</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.fasterxml.jackson.core</groupId>
68             <artifactId>jackson-core</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>com.fasterxml.jackson.dataformat</groupId>
72             <artifactId>jackson-dataformat-smile</artifactId>
73         </dependency>
74
75         <!-- JSON PATH -->
76         <dependency>
77             <groupId>com.jayway.jsonpath</groupId>
78             <artifactId>json-path</artifactId>
79         </dependency>
80
81         <!-- CODE GENERATION -->
82         <dependency>
83             <groupId>org.projectlombok</groupId>
84             <artifactId>lombok</artifactId>
85             <scope>provided</scope>
86         </dependency>
87
88         <!-- TEST DEPENDENCIES -->
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>dcae-analytics-test</artifactId>
92         </dependency>
93
94         <dependency>
95             <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
96             <artifactId>cbs-client</artifactId>
97             <version>${sdk.version}</version>
98         </dependency>
99         <dependency>
100             <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
101             <artifactId>dmaap-client</artifactId>
102             <version>${sdk.version}</version>
103         </dependency>
104         <dependency>
105             <groupId>org.springframework</groupId>
106             <artifactId>spring-beans</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.springframework</groupId>
110             <artifactId>spring-context</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.springframework</groupId>
114             <artifactId>spring-webflux</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.springframework.boot</groupId>
118             <artifactId>spring-boot-autoconfigure</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>javax.validation</groupId>
122             <artifactId>validation-api</artifactId>
123         </dependency>
124         <dependency>
125             <groupId>org.immutables</groupId>
126             <artifactId>value</artifactId>
127             <version>${immutable.version}</version>
128             <scope>provided</scope>
129         </dependency>
130         <dependency>
131             <groupId>org.onap.dcaegen2.analytics.tca-gen2</groupId>
132             <artifactId>eelf-logger-logback-impl</artifactId>
133         </dependency>
134     </dependencies>
135
136 </project>