b1606045605ae9012364add8994e4291c7fcd0de
[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>3.0.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
53         <!-- ECOMP LOGGER -->
54         <dependency>
55             <groupId>org.onap.dcaegen2.analytics.tca-gen2</groupId>
56             <artifactId>eelf-logger-logback-impl</artifactId>
57         </dependency>
58
59         <!-- SPRING DEPENDENCIES -->
60         <dependency>
61             <groupId>org.springframework.boot</groupId>
62             <artifactId>spring-boot-starter-web</artifactId>
63             <!-- EXCLUDE DEFAULT TOMCAT, AS UNDERTOW IS PREFERRED OVER TOMCAT -->
64             <exclusions>
65                 <exclusion>
66                     <groupId>org.springframework.boot</groupId>
67                     <artifactId>spring-boot-starter-tomcat</artifactId>
68                 </exclusion>
69                 <exclusion>
70                     <groupId>io.undertow</groupId>
71                     <artifactId>undertow-core</artifactId>
72                 </exclusion>
73             </exclusions>
74         </dependency>
75
76         <dependency>
77             <groupId>org.springframework.boot</groupId>
78             <artifactId>spring-boot-starter-undertow</artifactId>
79             <exclusions>
80                 <exclusion>
81                     <groupId>io.undertow</groupId>
82                     <artifactId>undertow-websockets-jsr</artifactId>
83                 </exclusion>
84             </exclusions>
85         </dependency>
86
87
88         <!-- SPRING INTEGRATION -->
89         <dependency>
90             <groupId>org.springframework.boot</groupId>
91             <artifactId>spring-boot-starter-integration</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.springframework.integration</groupId>
95             <artifactId>spring-integration-http</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.springframework.integration</groupId>
99             <artifactId>spring-integration-mongodb</artifactId>
100         </dependency>
101
102
103         <!-- APACHE HTTP CLIENT -->
104         <dependency>
105             <groupId>org.apache.httpcomponents</groupId>
106             <artifactId>httpclient</artifactId>
107         </dependency>
108
109         <!-- UTILITIES -->
110         <dependency>
111             <groupId>org.apache.commons</groupId>
112             <artifactId>commons-text</artifactId>
113         </dependency>
114
115         <!-- CODE GENERATION -->
116         <dependency>
117             <groupId>org.projectlombok</groupId>
118             <artifactId>lombok</artifactId>
119             <scope>provided</scope>
120         </dependency>
121
122         <!-- FIND BUGS -->
123         <dependency>
124             <groupId>com.google.code.findbugs</groupId>
125             <artifactId>jsr305</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>com.google.code.findbugs</groupId>
129             <artifactId>annotations</artifactId>
130         </dependency>
131
132         <!-- TEST DEPENDENCIES -->
133         <dependency>
134             <groupId>${project.groupId}</groupId>
135             <artifactId>dcae-analytics-test</artifactId>
136         </dependency>
137          <!-- https://mvnrepository.com/artifact/io.undertow/undertow-core -->
138         <dependency>
139             <groupId>io.undertow</groupId>
140             <artifactId>undertow-core</artifactId>
141             <version>2.0.17.Final</version>
142         </dependency>
143
144     </dependencies>
145
146
147     <dependencyManagement>
148       <dependencies>
149         <dependency>
150           <groupId>org.springframework</groupId>
151           <artifactId>spring-core</artifactId>
152           <version>5.0.11.RELEASE</version>
153         </dependency>
154       </dependencies>
155     </dependencyManagement>
156 </project>