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