17acbff32a55f5c0a5709f9a0880895aa2ec8194
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-common / 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.1.0-SNAPSHOT</version>
32     </parent>
33
34
35     <artifactId>dcae-analytics-cdap-common</artifactId>
36     <packaging>jar</packaging>
37
38     <!-- THIS MODULE CONTAINS CDAP CODE COMMON FOR ALL CDAP DCAE ANALYTICS MODULES -->
39     <name>DCAE Analytics CDAP Common</name>
40     <description>Contains CDAP common code to all CDAP DCAE Analytics Modules</description>
41
42     <properties>
43         <main.basedir>${project.parent.basedir}</main.basedir>
44     </properties>
45
46     <dependencies>
47
48         <!-- DCAE DEPENDENCIES -->
49         <dependency>
50             <groupId>org.onap.dcaegen2.analytics.tca</groupId>
51             <artifactId>dcae-analytics-tca</artifactId>
52             <version>2.1.0-SNAPSHOT</version>
53         </dependency>
54
55         <!-- CDAP -->
56         <dependency>
57             <groupId>co.cask.cdap</groupId>
58             <artifactId>cdap-api</artifactId>
59         </dependency>
60
61         <!-- HADOOP -->
62         <dependency>
63             <groupId>org.apache.hadoop</groupId>
64             <artifactId>hadoop-mapreduce-client-core</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.apache.hadoop</groupId>
68             <artifactId>hadoop-common</artifactId>
69         </dependency>
70
71         <!-- LOGGING -->
72         <dependency>
73             <groupId>org.slf4j</groupId>
74             <artifactId>slf4j-api</artifactId>
75         </dependency>
76
77         <dependency>
78             <groupId>ch.qos.logback</groupId>
79             <artifactId>logback-core</artifactId>
80         </dependency>
81
82         <dependency>
83             <groupId>ch.qos.logback</groupId>
84             <artifactId>logback-classic</artifactId>
85         </dependency>
86
87         <!-- FIND BUGS -->
88         <dependency>
89             <groupId>com.google.code.findbugs</groupId>
90             <artifactId>jsr305</artifactId>
91             <version>${findbugs.jsr305.version}</version>
92             <scope>provided</scope>
93         </dependency>
94
95         <dependency>
96             <groupId>com.google.code.findbugs</groupId>
97             <artifactId>annotations</artifactId>
98             <version>${findbugs.annotations.version}</version>
99             <scope>provided</scope>
100         </dependency>
101
102         <!-- TEST DEPENDENCIES -->
103         <dependency>
104             <groupId>org.onap.dcaegen2.analytics.tca</groupId>
105             <artifactId>dcae-analytics-test</artifactId>
106             <version>2.1.0-SNAPSHOT</version>
107             <scope>test</scope>
108         </dependency>
109
110     </dependencies>
111
112
113 </project>