Modified project group id to tca-gen2
[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 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             </exclusions>
70         </dependency>
71
72         <dependency>
73             <groupId>org.springframework.boot</groupId>
74             <artifactId>spring-boot-starter-undertow</artifactId>
75             <exclusions>
76                 <exclusion>
77                     <groupId>io.undertow</groupId>
78                     <artifactId>undertow-websockets-jsr</artifactId>
79                 </exclusion>
80             </exclusions>
81         </dependency>
82
83
84         <!-- SPRING INTEGRATION -->
85         <dependency>
86             <groupId>org.springframework.boot</groupId>
87             <artifactId>spring-boot-starter-integration</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.springframework.integration</groupId>
91             <artifactId>spring-integration-http</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.springframework.integration</groupId>
95             <artifactId>spring-integration-mongodb</artifactId>
96         </dependency>
97
98
99         <!-- APACHE HTTP CLIENT -->
100         <dependency>
101             <groupId>org.apache.httpcomponents</groupId>
102             <artifactId>httpclient</artifactId>
103         </dependency>
104
105         <!-- UTILITIES -->
106         <dependency>
107             <groupId>org.apache.commons</groupId>
108             <artifactId>commons-text</artifactId>
109         </dependency>
110
111         <!-- CODE GENERATION -->
112         <dependency>
113             <groupId>org.projectlombok</groupId>
114             <artifactId>lombok</artifactId>
115             <scope>provided</scope>
116         </dependency>
117
118         <!-- FIND BUGS -->
119         <dependency>
120             <groupId>com.google.code.findbugs</groupId>
121             <artifactId>jsr305</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>com.google.code.findbugs</groupId>
125             <artifactId>annotations</artifactId>
126         </dependency>
127
128         <!-- TEST DEPENDENCIES -->
129         <dependency>
130             <groupId>${project.groupId}</groupId>
131             <artifactId>dcae-analytics-test</artifactId>
132         </dependency>
133
134     </dependencies>
135
136
137 </project>