update sdc version
[sdc.git] / catalog-dao / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4
5         <groupId>org.openecomp.sdc.be</groupId>
6         <artifactId>catalog-dao</artifactId>
7
8         <parent>
9                 <groupId>org.openecomp.sdc</groupId>
10                 <artifactId>sdc-main</artifactId>
11                 <version>1.3.0-SNAPSHOT</version>
12         </parent>
13
14         <dependencies>
15                 <!-- Common of SDC -->
16                 <dependency>
17                         <groupId>org.openecomp.sdc</groupId>
18                         <artifactId>common-app-api</artifactId>
19                         <version>${project.version}</version>
20                         <scope>provided</scope>
21                 </dependency>
22                 
23                 <dependency>
24                         <groupId>org.openecomp.sdc.be</groupId>
25                         <artifactId>common-be</artifactId>
26                         <version>${project.version}</version>
27                         <scope>provided</scope>
28                 </dependency>
29
30                 <dependency>
31                         <groupId>ch.qos.logback</groupId>
32                         <artifactId>logback-classic</artifactId>
33             <version>${logback.version}</version>
34                         <scope>provided</scope>
35                 </dependency>
36
37                 <dependency>
38                         <groupId>org.elasticsearch</groupId>
39                         <artifactId>elasticsearch</artifactId>
40                         <version>${elastic-search.version}</version>
41                         <scope>provided</scope>
42                 </dependency>
43
44                 <dependency>
45                         <groupId>org.elasticsearch.plugin</groupId>
46                         <artifactId>shield</artifactId>
47                         <version>${elastic-search.version}</version>
48                         <scope>provided</scope>
49                 </dependency>
50
51                 <!-- SPRING -->
52                 <dependency>
53                         <groupId>org.springframework</groupId>
54                         <artifactId>spring-context</artifactId>
55                         <version>${spring.version}</version>
56                         <scope>provided</scope>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>org.springframework</groupId>
61                         <artifactId>spring-context-support</artifactId>
62                         <version>${spring.version}</version>
63                         <scope>provided</scope>
64                 </dependency>
65
66                 <dependency>
67                         <groupId>org.springframework</groupId>
68                         <artifactId>spring-beans</artifactId>
69                         <version>${spring.version}</version>
70                         <scope>provided</scope>
71                 </dependency>
72
73                 <dependency>
74                         <groupId>org.aspectj</groupId>
75                         <artifactId>aspectjrt</artifactId>
76                         <version>${aspectj.version}</version>
77                 </dependency>
78
79                 <dependency>
80                         <groupId>org.aspectj</groupId>
81                         <artifactId>aspectjweaver</artifactId>
82                         <version>${aspectj.version}</version>
83                 </dependency>
84
85                 <dependency>
86                                 <groupId>com.fasterxml.jackson.core</groupId>
87                         <artifactId>jackson-databind</artifactId>
88                         <version>${jackson.version}</version>
89                 </dependency>
90
91                 <dependency>
92                         <groupId>com.fasterxml.jackson.core</groupId>
93                         <artifactId>jackson-core</artifactId>
94                         <version>${jackson.version}</version>
95                 </dependency>
96
97                 <dependency>
98                         <groupId>com.googlecode.json-simple</groupId>
99                         <artifactId>json-simple</artifactId>
100                         <version>${json-simple.version}</version>
101                         <scope>provided</scope>
102                 </dependency>
103                 
104                 <dependency>
105                         <groupId>org.apache.lucene</groupId>
106                         <artifactId>lucene-regex</artifactId>
107                         <version>${regex.version}</version>
108                 </dependency>
109
110                 <dependency>
111                         <groupId>org.mockito</groupId>
112                         <artifactId>mockito-core</artifactId>
113                         <scope>test</scope>
114                 </dependency>
115
116                 <dependency>
117                 <groupId>org.jmockit</groupId>
118                         <artifactId>jmockit</artifactId>
119                         <version>${jmockit.version}</version>
120                         <scope>test</scope>
121                 </dependency>
122
123                 <dependency>
124                         <groupId>org.yaml</groupId>
125                         <artifactId>snakeyaml</artifactId>
126                         <version>${snakeyaml.version}</version>
127                         <scope>provided</scope>
128                 </dependency>
129
130                 <dependency>
131                         <groupId>com.google.code.gson</groupId>
132                         <artifactId>gson</artifactId>
133                         <version>${gson.version}</version>
134                         <scope>provided</scope>
135                 </dependency>
136
137                 <dependency>
138                         <groupId>org.functionaljava</groupId>
139                         <artifactId>functionaljava</artifactId>
140                         <version>${functionaljava.version}</version>
141                         <scope>provided</scope>
142                 </dependency>
143
144                 <!-- http client -->
145                 <dependency>
146                         <groupId>org.apache.httpcomponents</groupId>
147                         <artifactId>httpclient</artifactId>
148             <version>${httpclient.version}</version>
149                         <scope>provided</scope>
150                 </dependency>
151
152                 <dependency>
153                         <groupId>org.apache.httpcomponents</groupId>
154                         <artifactId>httpcore</artifactId>
155                         <version>${httpcore.version}</version>
156                         <scope>provided</scope>
157                 </dependency>
158
159                 <dependency>
160                         <groupId>com.google.guava</groupId>
161                         <artifactId>guava</artifactId>
162                         <version>${guava.version}</version>
163                         <scope>provided</scope>
164                 </dependency>
165
166                 <!-- TEST -->
167                 <dependency>
168                         <groupId>org.assertj</groupId>
169                         <artifactId>assertj-core</artifactId>
170                         <scope>test</scope>
171                 </dependency>
172
173                 <dependency>
174                         <groupId>org.springframework</groupId>
175                         <artifactId>spring-test</artifactId>
176                         <version>${spring.version}</version>
177                         <scope>test</scope>
178                 </dependency>
179
180                 <dependency>
181                         <groupId>junit</groupId>
182                         <artifactId>junit</artifactId>
183                         <version>${junit.version}</version>
184                         <scope>test</scope>
185                 </dependency>
186
187                 <dependency>
188                         <groupId>org.apache.commons</groupId>
189                         <artifactId>commons-jci-core</artifactId>
190                         <version>${commons-jci-core.version}</version>
191                         <scope>test</scope>
192                 </dependency>
193
194                 <dependency>
195                         <groupId>org.springframework</groupId>
196                         <artifactId>spring-expression</artifactId>
197                         <version>${spring.version}</version>
198                         <scope>test</scope>
199                 </dependency>
200
201                 <dependency>
202                         <groupId>org.springframework</groupId>
203                         <artifactId>spring-aop</artifactId>
204                         <version>${spring.version}</version>
205                         <scope>test</scope>
206                 </dependency>
207
208                 <!-- TITAN -->
209                 <dependency>
210                         <groupId>com.thinkaurelius.titan</groupId>
211                         <artifactId>titan-core</artifactId>
212                         <version>${titan.version}</version>
213                         <scope>provided</scope>
214                         <exclusions>
215                                 <exclusion>
216                                         <groupId>org.json</groupId>
217                                         <artifactId>json</artifactId>
218                                 </exclusion>
219                                 <exclusion>
220                                         <artifactId>slf4j-log4j12</artifactId>
221                                         <groupId>org.slf4j</groupId>
222                                 </exclusion>
223                         </exclusions>
224                 </dependency>
225
226                 <dependency>
227                         <groupId>org.onap.sdc.sdc-titan-cassandra</groupId>
228                         <artifactId>sdc-titan-cassandra</artifactId>
229                         <version>${sdc.titan.version}</version>
230                         <scope>provided</scope>
231                         <exclusions>
232                                 <exclusion>
233                                         <groupId>org.slf4j</groupId>
234                                         <artifactId>slf4j-log4j12</artifactId>
235                                 </exclusion>
236                         </exclusions>
237                 </dependency>
238
239                 <dependency>
240                         <groupId>org.apache.commons</groupId>
241                         <artifactId>commons-lang3</artifactId>
242                         <version>${lang3.version}</version>
243                         <scope>provided</scope>
244                 </dependency>
245                 <!-- TITAN END -->
246
247                 <!-- CASSANDRA -->
248                 <dependency>
249                         <groupId>com.datastax.cassandra</groupId>
250                         <artifactId>cassandra-driver-core</artifactId>
251                         <version>${cassandra.driver.version}</version>
252                         <scope>provided</scope>
253                 </dependency>
254                 <dependency>
255                         <groupId>com.datastax.cassandra</groupId>
256                         <artifactId>cassandra-driver-mapping</artifactId>
257                         <version>${cassandra.driver.version}</version>
258                         <scope>provided</scope>
259                 </dependency>
260                 <!-- CASSANDRA END -->
261     </dependencies>
262
263         <build>
264
265                 <pluginManagement>
266                         <plugins>
267                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
268                                         only. It has no influence on the Maven build itself. -->
269                                 <plugin>
270                                         <groupId>org.eclipse.m2e</groupId>
271                                         <artifactId>lifecycle-mapping</artifactId>
272                                         <version>1.0.0</version>
273                                         <configuration>
274                                                 <lifecycleMappingMetadata>
275                                                         <pluginExecutions>
276                                                                 <pluginExecution>
277                                                                         <pluginExecutionFilter>
278                                                                                 <groupId>fr.fastconnect</groupId>
279                                                                                 <artifactId>plantuml-maven-plugin</artifactId>
280                                                                                 <versionRange>[1.0.0,)</versionRange>
281                                                                                 <goals>
282                                                                                         <goal>plant</goal>
283                                                                                 </goals>
284                                                                         </pluginExecutionFilter>
285                                                                         <action>
286                                                                                 <ignore />
287                                                                         </action>
288                                                                 </pluginExecution>
289                                                         </pluginExecutions>
290                                                 </lifecycleMappingMetadata>
291                                         </configuration>
292                                 </plugin>
293                                 <plugin>
294                                         <groupId>org.apache.maven.plugins</groupId>
295                                         <artifactId>maven-deploy-plugin</artifactId>
296                                         <version>2.7</version>
297                                         <configuration>
298                                                 <skip>true</skip>
299                                         </configuration>
300                                 </plugin>
301                         </plugins>
302                 </pluginManagement>
303         </build>
304 </project>