7fc7a1f4a67cebe196e3d1425f9df25a1c241842
[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     <groupId>org.onap.aai</groupId>
26     <artifactId>champ</artifactId>
27     <name>aai-champ</name>
28     <packaging>pom</packaging>
29     <version>1.2.0-SNAPSHOT</version>
30
31     <properties>
32         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
33         <event.client.version>1.2.1</event.client.version>
34     </properties>
35
36     <modules>
37         <module>champ-lib</module>
38         <module>champ-service-deps-janus</module>
39         <module>champ-service-deps-titan</module>
40         <module>champ-service</module>
41     </modules>
42
43     <dependencyManagement>
44         <dependencies>
45
46             <dependency>
47                 <groupId>org.onap.aai.event-client</groupId>
48                 <artifactId>event-client-api</artifactId>
49                 <version>${event.client.version}</version>
50             </dependency>
51
52             <dependency>
53                 <groupId>org.onap.aai.event-client</groupId>
54                 <artifactId>event-client-dmaap</artifactId>
55                 <version>${event.client.version}</version>
56             </dependency>
57
58             <dependency>
59                 <groupId>org.onap.aai.event-client</groupId>
60                 <artifactId>event-client-kafka</artifactId>
61                 <version>${event.client.version}</version>
62             </dependency>
63
64             <dependency>
65                 <groupId>commons-collections</groupId>
66                 <artifactId>commons-collections</artifactId>
67                 <version>20040616</version>
68             </dependency>
69
70             <dependency>
71                 <groupId>ch.qos.logback</groupId>
72                 <artifactId>logback-classic</artifactId>
73                 <version>1.2.3</version>
74             </dependency>
75
76             <dependency>
77                 <groupId>ch.qos.logback</groupId>
78                 <artifactId>logback-core</artifactId>
79                 <version>1.2.3</version>
80             </dependency>
81
82             <dependency>
83                 <groupId>org.apache.hadoop</groupId>
84                 <artifactId>hadoop-common</artifactId>
85                 <version>2.7.6</version>
86             </dependency>
87
88             <dependency>
89                 <groupId>org.apache.hbase</groupId>
90                 <artifactId>hbase-client</artifactId>
91                 <version>1.0.2</version>
92             </dependency>
93
94             <dependency>
95                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
96                 <artifactId>dmaapClient</artifactId>
97                 <version>1.1.5</version>
98             </dependency>
99
100             <dependency>
101                 <groupId>io.netty</groupId>
102                 <artifactId>netty-all</artifactId>
103                 <version>4.1.24.Final</version>
104             </dependency>
105
106             <dependency>
107                 <groupId>io.netty</groupId>
108                 <artifactId>netty</artifactId>
109                 <version>3.10.6.Final</version>
110             </dependency>
111
112             <dependency>
113                 <groupId>org.apache.zookeeper</groupId>
114                 <artifactId>zookeeper</artifactId>
115                 <version>3.4.12</version>
116             </dependency>
117
118             <dependency>
119                 <groupId>com.fasterxml.jackson.core</groupId>
120                 <artifactId>jackson-core</artifactId>
121                 <version>2.8.11</version>
122             </dependency>
123
124             <dependency>
125                 <groupId>com.fasterxml.jackson.core</groupId>
126                 <artifactId>jackson-databind</artifactId>
127                 <version>2.8.11.1</version>
128             </dependency>
129
130             <dependency>
131                 <groupId>org.apache.httpcomponents</groupId>
132                 <artifactId>httpclient-cache</artifactId>
133                 <version>4.5.3</version>
134             </dependency>
135
136             <dependency>
137                 <groupId>org.apache.httpcomponents</groupId>
138                 <artifactId>httpclient</artifactId>
139                 <version>4.5.3</version>
140             </dependency>
141
142             <dependency>
143                 <groupId>org.codehaus.groovy</groupId>
144                 <artifactId>groovy</artifactId>
145                 <version>2.4.15</version>
146             </dependency>
147         </dependencies>
148     </dependencyManagement>
149
150     <distributionManagement>
151         <repository>
152             <id>ecomp-releases</id>
153             <name>ECOMP Release Repository</name>
154             <url>${onap.nexus.url}/content/repositories/releases/</url>
155         </repository>
156         <snapshotRepository>
157             <id>ecomp-snapshots</id>
158             <name>ECOMP Snapshot Repository</name>
159             <url>${onap.nexus.url}/content/repositories/snapshots/</url>
160         </snapshotRepository>
161     </distributionManagement>
162
163 </project>