14e89ca8820cbca71431d8dbbbec6090c2f5efed
[dcaegen2/analytics/tca.git] / dcae-analytics-aai / 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
35     <artifactId>dcae-analytics-aai</artifactId>
36     <packaging>jar</packaging>
37
38     <!-- THIS MODULE CONTAINS CODE FOR DMaaP API -->
39     <name>DCAE Analytics A&#38;AI</name>
40     <description>A&#38;AI(Active and Available Inventory) API for DCAE Analytics</description>
41
42     <properties>
43         <main.basedir>${project.parent.basedir}</main.basedir>
44     </properties>
45
46     <dependencies>
47
48         <!-- DCAE COMMON DEPENDENCIES -->
49         <dependency>
50             <groupId>org.onap.dcaegen2.analytics.tca</groupId>
51             <artifactId>dcae-analytics-common</artifactId>
52             <version>${project.parent.version}</version>
53         </dependency>
54
55         <!-- APACHE CLIENT -->
56         <dependency>
57             <groupId>org.apache.httpcomponents</groupId>
58             <artifactId>httpclient</artifactId>
59         </dependency>
60
61         <!-- LOGGING -->
62         <dependency>
63             <groupId>org.slf4j</groupId>
64             <artifactId>slf4j-api</artifactId>
65         </dependency>
66
67         <dependency>
68             <groupId>ch.qos.logback</groupId>
69             <artifactId>logback-core</artifactId>
70         </dependency>
71
72         <dependency>
73             <groupId>ch.qos.logback</groupId>
74             <artifactId>logback-classic</artifactId>
75         </dependency>
76
77         <dependency>
78             <groupId>com.google.code.findbugs</groupId>
79             <artifactId>jsr305</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>com.google.code.findbugs</groupId>
83             <artifactId>annotations</artifactId>
84         </dependency>
85
86
87         <!-- JACKSON JSON -->
88         <!--
89         <dependency>
90             <groupId>com.fasterxml.jackson.core</groupId>
91             <artifactId>jackson-core</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>com.fasterxml.jackson.core</groupId>
95             <artifactId>jackson-databind</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>com.fasterxml.jackson.core</groupId>
99             <artifactId>jackson-annotations</artifactId>
100         </dependency>
101         -->
102
103         <!-- TEST DEPENDENCIES -->
104         <dependency>
105             <groupId>org.onap.dcaegen2.analytics.tca</groupId>
106             <artifactId>dcae-analytics-test</artifactId>
107             <version>${project.parent.version}</version>
108             <scope>test</scope>
109         </dependency>
110     </dependencies>
111
112 </project>