update sdc version in master
[sdc.git] / catalog-dao / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 SDC
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10         *
11      http://www.apache.org/licenses/LICENSE-2.0
12         *
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 Modifications copyright (c) 2018 Nokia
20 ================================================================================
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" 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         <modelVersion>4.0.0</modelVersion>
25
26         <groupId>org.openecomp.sdc.be</groupId>
27         <artifactId>catalog-dao</artifactId>
28
29         <parent>
30                 <groupId>org.openecomp.sdc</groupId>
31                 <artifactId>sdc-main</artifactId>
32                 <version>1.4.0-SNAPSHOT</version>
33         </parent>
34
35         <dependencies>
36                 <!-- Common of SDC -->
37                 <dependency>
38                         <groupId>org.openecomp.sdc</groupId>
39                         <artifactId>common-app-api</artifactId>
40                         <version>${project.version}</version>
41                         <scope>provided</scope>
42                 </dependency>
43
44                 <dependency>
45                         <groupId>org.openecomp.sdc.be</groupId>
46                         <artifactId>common-be</artifactId>
47                         <version>${project.version}</version>
48                         <scope>provided</scope>
49                 </dependency>
50
51                 <dependency>
52                         <groupId>ch.qos.logback</groupId>
53                         <artifactId>logback-classic</artifactId>
54                         <version>${logback.version}</version>
55                         <scope>provided</scope>
56                 </dependency>
57
58                 <dependency>
59                         <groupId>org.elasticsearch</groupId>
60                         <artifactId>elasticsearch</artifactId>
61                         <version>${elastic-search.version}</version>
62                         <scope>provided</scope>
63                 </dependency>
64
65                 <!-- SPRING -->
66                 <dependency>
67                         <groupId>org.springframework</groupId>
68                         <artifactId>spring-context</artifactId>
69                         <version>${spring.version}</version>
70                         <scope>provided</scope>
71                 </dependency>
72
73                 <dependency>
74                         <groupId>org.springframework</groupId>
75                         <artifactId>spring-context-support</artifactId>
76                         <version>${spring.version}</version>
77                         <scope>provided</scope>
78                 </dependency>
79
80                 <dependency>
81                         <groupId>org.springframework</groupId>
82                         <artifactId>spring-beans</artifactId>
83                         <version>${spring.version}</version>
84                         <scope>provided</scope>
85                 </dependency>
86
87                 <dependency>
88                         <groupId>org.aspectj</groupId>
89                         <artifactId>aspectjrt</artifactId>
90                         <version>${aspectj.version}</version>
91                 </dependency>
92
93                 <dependency>
94                         <groupId>org.aspectj</groupId>
95                         <artifactId>aspectjweaver</artifactId>
96                         <version>${aspectj.version}</version>
97                 </dependency>
98
99                 <dependency>
100                         <groupId>org.springframework</groupId>
101                         <artifactId>spring-aop</artifactId>
102                         <version>${spring.version}</version>
103                 </dependency>
104
105                 <dependency>
106                         <groupId>org.springframework</groupId>
107                         <artifactId>spring-tx</artifactId>
108                         <version>${spring.version}</version>
109                 </dependency>
110
111                 <dependency>
112                         <groupId>com.fasterxml.jackson.core</groupId>
113                         <artifactId>jackson-databind</artifactId>
114                         <version>${jackson.version}</version>
115                 </dependency>
116
117                 <dependency>
118                         <groupId>com.fasterxml.jackson.core</groupId>
119                         <artifactId>jackson-core</artifactId>
120                         <version>${jackson.version}</version>
121                 </dependency>
122
123                 <dependency>
124                         <groupId>com.googlecode.json-simple</groupId>
125                         <artifactId>json-simple</artifactId>
126                         <version>${json-simple.version}</version>
127                         <scope>provided</scope>
128                 </dependency>
129
130                 <dependency>
131                         <groupId>org.apache.lucene</groupId>
132                         <artifactId>lucene-regex</artifactId>
133                         <version>${regex.version}</version>
134                 </dependency>
135
136                 <dependency>
137                         <groupId>org.mockito</groupId>
138                         <artifactId>mockito-core</artifactId>
139                         <scope>test</scope>
140                 </dependency>
141
142                 <dependency>
143                 <groupId>org.jmockit</groupId>
144                         <artifactId>jmockit</artifactId>
145                         <scope>test</scope>
146                 </dependency>
147
148                 <dependency>
149                         <groupId>com.google.code.bean-matchers</groupId>
150                         <artifactId>bean-matchers</artifactId>
151                         <version>${bean-matchers.version}</version>
152                         <scope>test</scope>
153                 </dependency>
154
155                 <dependency>
156                         <groupId>org.yaml</groupId>
157                         <artifactId>snakeyaml</artifactId>
158                         <version>${snakeyaml.version}</version>
159                         <scope>provided</scope>
160                 </dependency>
161
162                 <dependency>
163                         <groupId>com.google.code.gson</groupId>
164                         <artifactId>gson</artifactId>
165                         <version>${gson.version}</version>
166                         <scope>provided</scope>
167                 </dependency>
168
169                 <dependency>
170                         <groupId>org.functionaljava</groupId>
171                         <artifactId>functionaljava</artifactId>
172                         <version>${functionaljava.version}</version>
173                         <scope>provided</scope>
174                 </dependency>
175
176                 <!-- http client -->
177                 <dependency>
178                         <groupId>org.apache.httpcomponents</groupId>
179                         <artifactId>httpclient</artifactId>
180                         <version>${httpclient.version}</version>
181                         <scope>provided</scope>
182                 </dependency>
183
184                 <dependency>
185                         <groupId>org.apache.httpcomponents</groupId>
186                         <artifactId>httpcore</artifactId>
187                         <version>${httpcore.version}</version>
188                         <scope>provided</scope>
189                 </dependency>
190
191                 <dependency>
192                         <groupId>com.google.guava</groupId>
193                         <artifactId>guava</artifactId>
194                         <version>${guava.version}</version>
195                         <scope>provided</scope>
196                 </dependency>
197
198                 <!-- TEST -->
199                 <dependency>
200                         <groupId>org.assertj</groupId>
201                         <artifactId>assertj-core</artifactId>
202                         <scope>test</scope>
203                 </dependency>
204
205                 <dependency>
206                         <groupId>org.springframework</groupId>
207                         <artifactId>spring-test</artifactId>
208                         <version>${spring.version}</version>
209                         <scope>test</scope>
210                 </dependency>
211
212                 <dependency>
213                         <groupId>junit</groupId>
214                         <artifactId>junit</artifactId>
215                         <version>${junit.version}</version>
216                         <scope>test</scope>
217                 </dependency>
218
219                 <dependency>
220                         <groupId>org.apache.commons</groupId>
221                         <artifactId>commons-jci-core</artifactId>
222                         <version>${commons-jci-core.version}</version>
223                         <scope>test</scope>
224                 </dependency>
225
226                 <dependency>
227                         <groupId>org.springframework</groupId>
228                         <artifactId>spring-expression</artifactId>
229                         <version>${spring.version}</version>
230                         <scope>test</scope>
231                 </dependency>
232
233                 <!-- TITAN -->
234                 <dependency>
235                         <groupId>com.thinkaurelius.titan</groupId>
236                         <artifactId>titan-core</artifactId>
237                         <version>${titan.version}</version>
238                         <scope>provided</scope>
239                         <exclusions>
240                                 <exclusion>
241                                         <groupId>org.json</groupId>
242                                         <artifactId>json</artifactId>
243                                 </exclusion>
244                                 <exclusion>
245                                         <artifactId>slf4j-log4j12</artifactId>
246                                         <groupId>org.slf4j</groupId>
247                                 </exclusion>
248                                 <exclusion>
249                                         <artifactId>commons-collections</artifactId>
250                                         <groupId>commons-collections</groupId>
251                                 </exclusion>
252                                 <exclusion>
253                                         <artifactId>groovy</artifactId>
254                                         <groupId>org.codehaus.groovy</groupId>
255                                 </exclusion>
256                         </exclusions>
257                 </dependency>
258
259                 <dependency>
260                         <groupId>org.onap.sdc.sdc-titan-cassandra</groupId>
261                         <artifactId>sdc-titan-cassandra</artifactId>
262                         <version>${sdc.titan.version}</version>
263                         <scope>provided</scope>
264                         <exclusions>
265                                 <exclusion>
266                                         <groupId>org.slf4j</groupId>
267                                         <artifactId>slf4j-log4j12</artifactId>
268                                 </exclusion>
269                         </exclusions>
270                 </dependency>
271
272                 <dependency>
273                         <groupId>org.apache.commons</groupId>
274                         <artifactId>commons-lang3</artifactId>
275                         <version>${lang3.version}</version>
276                         <scope>provided</scope>
277                 </dependency>
278                 <!-- TITAN END -->
279
280                 <!-- CASSANDRA -->
281                 <dependency>
282                         <groupId>com.datastax.cassandra</groupId>
283                         <artifactId>cassandra-driver-core</artifactId>
284                         <version>${cassandra.driver.version}</version>
285                         <scope>provided</scope>
286                         <exclusions>
287                                 <exclusion>
288                                         <groupId>io.netty</groupId>
289                                         <artifactId>netty-handler</artifactId>
290                                 </exclusion>
291                         </exclusions>
292                 </dependency>
293                 <dependency>
294                         <groupId>com.datastax.cassandra</groupId>
295                         <artifactId>cassandra-driver-mapping</artifactId>
296                         <version>${cassandra.driver.version}</version>
297                         <scope>provided</scope>
298                 </dependency>
299                 <dependency>
300                         <groupId>org.cassandraunit</groupId>
301                         <artifactId>cassandra-unit</artifactId>
302                         <version>${cassandra.unit.version}</version>
303                         <scope>test</scope>
304                         <exclusions>
305                                 <exclusion>
306                                         <groupId>org.apache.cassandra</groupId>
307                                         <artifactId>cassandra-all</artifactId>
308                                 </exclusion>
309                         </exclusions>
310                 </dependency>
311                 <dependency>
312                         <groupId>org.apache.cassandra</groupId>
313                         <artifactId>cassandra-all</artifactId>
314                         <version>3.11.3</version>
315                         <scope>test</scope>
316                 </dependency>
317                 <!-- CASSANDRA END -->
318
319                 <dependency>
320                         <groupId>org.codehaus.groovy</groupId>
321                         <artifactId>groovy</artifactId>
322                 </dependency>
323         </dependencies>
324
325         <build>
326
327                 <pluginManagement>
328                         <plugins>
329                                 <!--This plugin's configuration is used to store Eclipse m2e settings
330                                         only. It has no influence on the Maven build itself. -->
331                                 <plugin>
332                                         <groupId>org.eclipse.m2e</groupId>
333                                         <artifactId>lifecycle-mapping</artifactId>
334                                         <version>1.0.0</version>
335                                         <configuration>
336                                                 <lifecycleMappingMetadata>
337                                                         <pluginExecutions>
338                                                                 <pluginExecution>
339                                                                         <pluginExecutionFilter>
340                                                                                 <groupId>fr.fastconnect</groupId>
341                                                                                 <artifactId>plantuml-maven-plugin</artifactId>
342                                                                                 <versionRange>[1.0.0,)</versionRange>
343                                                                                 <goals>
344                                                                                         <goal>plant</goal>
345                                                                                 </goals>
346                                                                         </pluginExecutionFilter>
347                                                                         <action>
348                                                                                 <ignore />
349                                                                         </action>
350                                                                 </pluginExecution>
351                                                         </pluginExecutions>
352                                                 </lifecycleMappingMetadata>
353                                         </configuration>
354                                 </plugin>
355                                 <plugin>
356                                         <groupId>com.github.sylvainlaurent.maven</groupId>
357                                         <artifactId>yaml-json-validator-maven-plugin</artifactId>
358                                         <executions>
359                                                 <execution>
360                                                         <id>validate</id>
361                                                         <phase>validate</phase>
362                                                         <goals>
363                                                                 <goal>validate</goal>
364                                                         </goals>
365                                                         <configuration>
366                                                                 <validationSets>
367                                                                         <validationSet>
368                                                                                 <includes>
369                                                                                         <include>src/main/resources/**/*.y*ml</include>
370                                                                                         <include>src/test/resources/**/*.y*ml</include>
371                                                                                 </includes>
372                                                                         </validationSet>
373                                                                         <validationSet>
374                                                                                 <includes>
375                                                                                         <include>src/main/resources/**/*.json</include>
376                                                                                         <include>src/test/resources/**/*.json</include>
377                                                                                 </includes>
378                                                                         </validationSet>
379                                                                 </validationSets>
380                                                         </configuration>
381                                                 </execution>
382                                         </executions>
383                                 </plugin>
384                         </plugins>
385                 </pluginManagement>
386         </build>
387 </project>