b16958ac04cef97ac053d444c4bc60f3e3ebc137
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-model / 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.tca-gen2</groupId>
29         <artifactId>dcae-analytics</artifactId>
30         <version>1.0.0-SNAPSHOT</version>
31     </parent>
32
33     <artifactId>dcae-analytics-model</artifactId>
34     <packaging>jar</packaging>
35
36     <!-- THIS MODULE CONTAINS MODELS COMMON FOR ALL DCAE ANALYTICS MODULES.
37      NOTE: THIS MODULE MUST NOT DEPEND ON ANY OTHER ANALYTICS MODULE IN COMPILE SCOPE. -->
38     <name>DCAE Analytics Model</name>
39     <description>Contains models (e.g. Common Event Format) which are common to DCAE Analytics</description>
40
41     <properties>
42         <main.basedir>${project.parent.basedir}</main.basedir>
43     </properties>
44
45     <dependencies>
46
47         <!-- LOGGING API -->
48         <dependency>
49             <groupId>org.slf4j</groupId>
50             <artifactId>slf4j-api</artifactId>
51         </dependency>
52
53         <!-- JSON SERIALIZATION/DESERIALIZATION LIBRARY -->
54         <dependency>
55             <groupId>com.fasterxml.jackson.core</groupId>
56             <artifactId>jackson-databind</artifactId>
57         </dependency>
58
59         <!-- JSON PATH -->
60         <dependency>
61             <groupId>com.jayway.jsonpath</groupId>
62             <artifactId>json-path</artifactId>
63         </dependency>
64
65         <!-- CODE GENERATION -->
66         <dependency>
67             <groupId>org.projectlombok</groupId>
68             <artifactId>lombok</artifactId>
69             <scope>provided</scope>
70         </dependency>
71
72         <!-- TEST DEPENDENCIES -->
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>dcae-analytics-test</artifactId>
76         </dependency>
77
78     </dependencies>
79
80 </project>