feffced5c40041d4d68ae3636c38a5a9cb643f4f
[dcaegen2/analytics/tca.git] / dcae-analytics-dmaap / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ===============================LICENSE_START======================================
4   ~  dcae-analytics
5   ~ ================================================================================
6   ~    Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7   ~ ================================================================================
8   ~  Licensed under the Apache License, Version 2.0 (the "License");
9   ~  you may not use this file except in compliance with the License.
10   ~   You may obtain a copy of the License at
11   ~
12   ~          http://www.apache.org/licenses/LICENSE-2.0
13   ~
14   ~  Unless required by applicable law or agreed to in writing, software
15   ~  distributed under the License is distributed on an "AS IS" BASIS,
16   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   ~  See the License for the specific language governing permissions and
18   ~  limitations under the License.
19   ~  ============================LICENSE_END===========================================
20   -->
21
22 <project xmlns="http://maven.apache.org/POM/4.0.0"
23          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25
26     <modelVersion>4.0.0</modelVersion>
27
28     <parent>
29         <artifactId>dcae-analytics</artifactId>
30         <groupId>org.onap.dcaegen2.analytics.tca</groupId>
31         <version>2.2.1-SNAPSHOT</version>
32     </parent>
33
34     <artifactId>dcae-analytics-dmaap</artifactId>
35     <packaging>jar</packaging>
36
37     <!-- THIS MODULE CONTAINS CODE FOR DMaaP API -->
38     <name>DCAE Analytics DMaaP</name>
39     <description>
40         DMaaP(Data Movement as a Platform) MR API using AAF(Authentication and Authorization Framework)
41     </description>
42
43
44     <properties>
45         <main.basedir>${project.parent.basedir}</main.basedir>
46     </properties>
47
48     <dependencies>
49
50         <!-- DCAE COMMON DEPENDENCIES -->
51         <dependency>
52             <groupId>org.onap.dcaegen2.analytics.tca</groupId>
53             <artifactId>dcae-analytics-common</artifactId>
54             <version>${project.parent.version}</version>
55         </dependency>
56
57         <!-- APACHE CLIENT -->
58         <dependency>
59             <groupId>org.apache.httpcomponents</groupId>
60             <artifactId>httpclient</artifactId>
61         </dependency>
62
63         <!-- LOGGING -->
64         <dependency>
65             <groupId>org.slf4j</groupId>
66             <artifactId>slf4j-api</artifactId>
67         </dependency>
68
69         <dependency>
70             <groupId>ch.qos.logback</groupId>
71             <artifactId>logback-core</artifactId>
72         </dependency>
73
74         <dependency>
75             <groupId>ch.qos.logback</groupId>
76             <artifactId>logback-classic</artifactId>
77         </dependency>
78
79         <dependency>
80             <groupId>com.google.code.findbugs</groupId>
81             <artifactId>jsr305</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>com.google.code.findbugs</groupId>
85             <artifactId>annotations</artifactId>
86         </dependency>
87
88
89         <!-- JACKSON JSON -->
90         <!--
91         <dependency>
92             <groupId>com.fasterxml.jackson.core</groupId>
93             <artifactId>jackson-core</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>com.fasterxml.jackson.core</groupId>
97             <artifactId>jackson-databind</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>com.fasterxml.jackson.core</groupId>
101             <artifactId>jackson-annotations</artifactId>
102         </dependency>
103         -->
104
105         <!-- TEST DEPENDENCIES -->
106         <dependency>
107             <groupId>org.onap.dcaegen2.analytics.tca</groupId>
108             <artifactId>dcae-analytics-test</artifactId>
109             <version>${project.parent.version}</version>
110             <scope>test</scope>
111         </dependency>
112
113     </dependencies>
114
115
116 </project>