Updating even-client to 1.3.1 - RMQ support
[aai/champ.git] / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 org.onap.aai
4 ================================================================================
5 Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6 Copyright © 2017-2018 Amdocs
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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.oparent</groupId>
27         <artifactId>oparent</artifactId>
28         <version>1.2.0</version>
29     </parent>
30
31     <groupId>org.onap.aai</groupId>
32     <artifactId>champ</artifactId>
33     <name>aai-champ</name>
34     <packaging>pom</packaging>
35     <version>1.4.0-SNAPSHOT</version>
36
37     <properties>
38         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
39         <event.client.version>1.3.1</event.client.version>
40     </properties>
41
42     <modules>
43         <module>champ-lib</module>
44         <module>champ-service-deps-janus</module>
45         <module>champ-service-deps-titan</module>
46         <module>champ-service</module>
47     </modules>
48
49     <build>
50         <plugins>
51             <plugin>
52                 <groupId>org.apache.maven.plugins</groupId>
53                 <artifactId>maven-deploy-plugin</artifactId>
54                 <configuration>
55                     <skip>true</skip>
56                 </configuration>
57             </plugin>
58         </plugins>
59     </build>
60
61     <dependencyManagement>
62         <dependencies>
63
64             <dependency>
65                 <groupId>org.onap.aai.event-client</groupId>
66                 <artifactId>event-client-api</artifactId>
67                 <version>${event.client.version}</version>
68             </dependency>
69
70             <dependency>
71                 <groupId>org.onap.aai.event-client</groupId>
72                 <artifactId>event-client-dmaap</artifactId>
73                 <version>${event.client.version}</version>
74             </dependency>
75
76             <dependency>
77                 <groupId>org.onap.aai.event-client</groupId>
78                 <artifactId>event-client-kafka</artifactId>
79                 <version>${event.client.version}</version>
80             </dependency>
81
82                 <dependency>
83                         <groupId>org.onap.aai.event-client</groupId>
84                         <artifactId>event-client-rabbitmq</artifactId>
85                         <version>${event.client.version}</version>
86                 </dependency>
87             <dependency>
88                 <groupId>commons-collections</groupId>
89                 <artifactId>commons-collections</artifactId>
90                 <version>20040616</version>
91             </dependency>
92
93             <dependency>
94                 <groupId>ch.qos.logback</groupId>
95                 <artifactId>logback-classic</artifactId>
96                 <version>1.2.3</version>
97             </dependency>
98
99             <dependency>
100                 <groupId>ch.qos.logback</groupId>
101                 <artifactId>logback-core</artifactId>
102                 <version>1.2.3</version>
103             </dependency>
104
105             <dependency>
106                 <groupId>org.apache.hadoop</groupId>
107                 <artifactId>hadoop-common</artifactId>
108                 <version>2.7.6</version>
109             </dependency>
110
111             <dependency>
112                 <groupId>org.apache.hbase</groupId>
113                 <artifactId>hbase-client</artifactId>
114                 <version>1.0.2</version>
115             </dependency>
116
117             <dependency>
118                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
119                 <artifactId>dmaapClient</artifactId>
120                 <version>1.1.5</version>
121             </dependency>
122
123             <dependency>
124                 <groupId>io.netty</groupId>
125                 <artifactId>netty-all</artifactId>
126                 <version>4.1.24.Final</version>
127             </dependency>
128
129             <dependency>
130                 <groupId>io.netty</groupId>
131                 <artifactId>netty</artifactId>
132                 <version>3.10.6.Final</version>
133             </dependency>
134
135             <dependency>
136                 <groupId>org.apache.zookeeper</groupId>
137                 <artifactId>zookeeper</artifactId>
138                 <version>3.4.12</version>
139             </dependency>
140
141             <dependency>
142                 <groupId>com.fasterxml.jackson.core</groupId>
143                 <artifactId>jackson-core</artifactId>
144                 <version>2.8.11</version>
145             </dependency>
146
147             <dependency>
148                 <groupId>com.fasterxml.jackson.core</groupId>
149                 <artifactId>jackson-databind</artifactId>
150                 <version>2.8.11.1</version>
151             </dependency>
152
153             <dependency>
154                 <groupId>org.apache.httpcomponents</groupId>
155                 <artifactId>httpclient-cache</artifactId>
156                 <version>4.5.3</version>
157             </dependency>
158
159             <dependency>
160                 <groupId>org.apache.httpcomponents</groupId>
161                 <artifactId>httpclient</artifactId>
162                 <version>4.5.3</version>
163             </dependency>
164
165             <dependency>
166                 <groupId>org.codehaus.groovy</groupId>
167                 <artifactId>groovy</artifactId>
168                 <version>2.4.15</version>
169             </dependency>
170         </dependencies>
171     </dependencyManagement>
172
173     <distributionManagement>
174         <repository>
175             <id>ecomp-releases</id>
176             <name>ECOMP Release Repository</name>
177             <url>${onap.nexus.url}/content/repositories/releases/</url>
178         </repository>
179         <snapshotRepository>
180             <id>ecomp-snapshots</id>
181             <name>ECOMP Snapshot Repository</name>
182             <url>${onap.nexus.url}/content/repositories/snapshots/</url>
183         </snapshotRepository>
184     </distributionManagement>
185
186 </project>