Fix groupId for TCA
[dcaegen2/analytics/tca.git] / dcae-analytics-tca / 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.0.0-SNAPSHOT</version>
32     </parent>
33
34     <artifactId>dcae-analytics-tca</artifactId>
35     <packaging>jar</packaging>
36
37     <!-- THIS MODULE CONTAINS CORE FUNCTIONALITY CODE FOR TCA (THRESHOLD CROSSING ALERT) -->
38     <name>DCAE Analytics TCA Core</name>
39     <description>DCAE Analytics TCA (THRESHOLD CROSSING ALERT) Core</description>
40
41     <properties>
42         <main.basedir>${project.parent.basedir}</main.basedir>
43     </properties>
44
45     <dependencies>
46
47         <!-- DCAE DEPENDENCIES -->
48         <dependency>
49             <groupId>org.onap.dcaegen2.analytics.tca</groupId>
50             <artifactId>dcae-analytics-common</artifactId>
51             <version>2.0.0-SNAPSHOT</version>
52         </dependency>
53
54         <dependency>
55             <groupId>org.onap.dcaegen2.analytics.tca</groupId>
56             <artifactId>dcae-analytics-dmaap</artifactId>
57             <version>2.0.0-SNAPSHOT</version>
58         </dependency>
59
60         <!-- SCHEDULER -->
61         <dependency>
62             <groupId>org.quartz-scheduler</groupId>
63             <artifactId>quartz</artifactId>
64         </dependency>
65
66         <!-- LOGGING -->
67         <dependency>
68             <groupId>org.slf4j</groupId>
69             <artifactId>slf4j-api</artifactId>
70         </dependency>
71
72         <dependency>
73             <groupId>ch.qos.logback</groupId>
74             <artifactId>logback-core</artifactId>
75         </dependency>
76
77         <dependency>
78             <groupId>ch.qos.logback</groupId>
79             <artifactId>logback-classic</artifactId>
80         </dependency>
81
82         <!-- FIND BUGS -->
83         <dependency>
84             <groupId>com.google.code.findbugs</groupId>
85             <artifactId>jsr305</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>com.google.code.findbugs</groupId>
89             <artifactId>annotations</artifactId>
90         </dependency>
91
92         <!-- TEST DEPENDENCIES -->
93         <dependency>
94             <groupId>org.onap.dcaegen2.analytics.tca</groupId>
95             <artifactId>dcae-analytics-test</artifactId>
96             <version>2.0.0-SNAPSHOT</version>
97             <scope>test</scope>
98         </dependency>
99     </dependencies>
100
101 </project>