2f2ef9f4f42a7bcface085e4e68606c613d07bfb
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-web / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ================================================================================
4   ~ Copyright (c) 2018-2019 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="http://maven.apache.org/POM/4.0.0"
22          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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.2.0-SNAPSHOT</version>
31     </parent>
32
33     <artifactId>dcae-analytics-web</artifactId>
34     <packaging>jar</packaging>
35
36     <!-- THIS MODULE CONTAINS WEB RELATED COMMON CODE FOR ALL DCAE ANALYTICS MODULES -->
37     <name>DCAE Analytics Web</name>
38     <description>Contains common web code for all DCAE Analytics Modules</description>
39
40     <properties>
41         <main.basedir>${project.parent.basedir}</main.basedir>
42     </properties>
43
44
45     <dependencies>
46
47         <!-- PROJECT DEPENDENCIES -->
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>dcae-analytics-model</artifactId>
51         </dependency>
52         <!-- PROJECT DEPENDENCIES -->
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>dcae-analytics-tca-core</artifactId>
56         </dependency>
57
58         <!-- ECOMP LOGGER -->
59         <dependency>
60             <groupId>org.onap.dcaegen2.analytics.tca-gen2</groupId>
61             <artifactId>eelf-logger-logback-impl</artifactId>
62         </dependency>
63
64         <!-- SPRING DEPENDENCIES -->
65         <dependency>
66             <groupId>org.springframework.boot</groupId>
67             <artifactId>spring-boot-starter-web</artifactId>
68             <!-- EXCLUDE DEFAULT TOMCAT, AS UNDERTOW IS PREFERRED OVER TOMCAT -->
69             <exclusions>
70                 <exclusion>
71                     <groupId>org.springframework.boot</groupId>
72                     <artifactId>spring-boot-starter-tomcat</artifactId>
73                 </exclusion>
74                 <exclusion>
75                     <groupId>io.undertow</groupId>
76                     <artifactId>undertow-core</artifactId>
77                 </exclusion>
78             </exclusions>
79         </dependency>
80
81         <dependency>
82             <groupId>org.springframework.boot</groupId>
83             <artifactId>spring-boot-starter-undertow</artifactId>
84             <exclusions>
85                 <exclusion>
86                     <groupId>io.undertow</groupId>
87                     <artifactId>undertow-websockets-jsr</artifactId>
88                 </exclusion>
89             </exclusions>
90         </dependency>
91
92
93         <!-- SPRING INTEGRATION -->
94         <dependency>
95             <groupId>org.springframework.boot</groupId>
96             <artifactId>spring-boot-starter-integration</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.springframework.integration</groupId>
100             <artifactId>spring-integration-http</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.springframework.integration</groupId>
104             <artifactId>spring-integration-mongodb</artifactId>
105         </dependency>
106
107
108         <!-- APACHE HTTP CLIENT -->
109         <dependency>
110             <groupId>org.apache.httpcomponents</groupId>
111             <artifactId>httpclient</artifactId>
112         </dependency>
113
114         <!-- UTILITIES -->
115         <dependency>
116             <groupId>org.apache.commons</groupId>
117             <artifactId>commons-text</artifactId>
118         </dependency>
119
120         <!-- CODE GENERATION -->
121         <dependency>
122             <groupId>org.projectlombok</groupId>
123             <artifactId>lombok</artifactId>
124             <scope>provided</scope>
125         </dependency>
126
127         <!-- FIND BUGS -->
128         <dependency>
129             <groupId>com.google.code.findbugs</groupId>
130             <artifactId>jsr305</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>com.google.code.findbugs</groupId>
134             <artifactId>annotations</artifactId>
135         </dependency>
136
137         <!-- TEST DEPENDENCIES -->
138         <dependency>
139             <groupId>${project.groupId}</groupId>
140             <artifactId>dcae-analytics-test</artifactId>
141         </dependency>
142          <!-- https://mvnrepository.com/artifact/io.undertow/undertow-core -->
143         <dependency>
144             <groupId>io.undertow</groupId>
145             <artifactId>undertow-core</artifactId>
146         </dependency>
147
148     </dependencies>
149
150
151     <dependencyManagement>
152       <dependencies>
153         <dependency>
154           <groupId>org.springframework</groupId>
155           <artifactId>spring-core</artifactId>
156           <version>5.0.11.RELEASE</version>
157         </dependency>
158       </dependencies>
159     </dependencyManagement>
160 </project>