re base code
[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>org.springframework</groupId>
87                         <artifactId>spring-aop</artifactId>
88                         <version>${spring.version}</version>
89                 </dependency>
90
91                 <dependency>
92                         <groupId>org.springframework</groupId>
93                         <artifactId>spring-tx</artifactId>
94                         <version>${spring.version}</version>
95                 </dependency>
96
97                 <dependency>
98                         <groupId>com.fasterxml.jackson.core</groupId>
99                         <artifactId>jackson-databind</artifactId>
100                         <version>${jackson.version}</version>
101                 </dependency>
102
103                 <dependency>
104                         <groupId>com.fasterxml.jackson.core</groupId>
105                         <artifactId>jackson-core</artifactId>
106                         <version>${jackson.version}</version>
107                 </dependency>
108
109                 <dependency>
110                         <groupId>com.googlecode.json-simple</groupId>
111                         <artifactId>json-simple</artifactId>
112                         <version>${json-simple.version}</version>
113                         <scope>provided</scope>
114                 </dependency>
115
116                 <dependency>
117                         <groupId>org.apache.lucene</groupId>
118                         <artifactId>lucene-regex</artifactId>
119                         <version>${regex.version}</version>
120                 </dependency>
121
122                 <dependency>
123                         <groupId>org.mockito</groupId>
124                         <artifactId>mockito-core</artifactId>
125                         <scope>test</scope>
126                 </dependency>
127
128                 <dependency>
129                 <groupId>org.jmockit</groupId>
130                         <artifactId>jmockit</artifactId>
131                         <scope>test</scope>
132                 </dependency>
133
134                 <dependency>
135                         <groupId>com.google.code.bean-matchers</groupId>
136                         <artifactId>bean-matchers</artifactId>
137                         <version>${bean-matchers.version}</version>
138                         <scope>test</scope>
139                 </dependency>
140
141                 <dependency>
142                         <groupId>org.yaml</groupId>
143                         <artifactId>snakeyaml</artifactId>
144                         <version>${snakeyaml.version}</version>
145                         <scope>provided</scope>
146                 </dependency>
147
148                 <dependency>
149                         <groupId>com.google.code.gson</groupId>
150                         <artifactId>gson</artifactId>
151                         <version>${gson.version}</version>
152                         <scope>provided</scope>
153                 </dependency>
154
155                 <dependency>
156                         <groupId>org.functionaljava</groupId>
157                         <artifactId>functionaljava</artifactId>
158                         <version>${functionaljava.version}</version>
159                         <scope>provided</scope>
160                 </dependency>
161
162                 <!-- http client -->
163                 <dependency>
164                         <groupId>org.apache.httpcomponents</groupId>
165                         <artifactId>httpclient</artifactId>
166                         <version>${httpclient.version}</version>
167                         <scope>provided</scope>
168                 </dependency>
169
170                 <dependency>
171                         <groupId>org.apache.httpcomponents</groupId>
172                         <artifactId>httpcore</artifactId>
173                         <version>${httpcore.version}</version>
174                         <scope>provided</scope>
175                 </dependency>
176
177                 <dependency>
178                         <groupId>com.google.guava</groupId>
179                         <artifactId>guava</artifactId>
180                         <version>${guava.version}</version>
181                         <scope>provided</scope>
182                 </dependency>
183
184                 <!-- TEST -->
185                 <dependency>
186                         <groupId>org.assertj</groupId>
187                         <artifactId>assertj-core</artifactId>
188                         <scope>test</scope>
189                 </dependency>
190
191                 <dependency>
192                         <groupId>org.springframework</groupId>
193                         <artifactId>spring-test</artifactId>
194                         <version>${spring.version}</version>
195                         <scope>test</scope>
196                 </dependency>
197
198                 <dependency>
199                         <groupId>junit</groupId>
200                         <artifactId>junit</artifactId>
201                         <version>${junit.version}</version>
202                         <scope>test</scope>
203                 </dependency>
204
205                 <dependency>
206                         <groupId>org.apache.commons</groupId>
207                         <artifactId>commons-jci-core</artifactId>
208                         <version>${commons-jci-core.version}</version>
209                         <scope>test</scope>
210                 </dependency>
211
212                 <dependency>
213                         <groupId>org.springframework</groupId>
214                         <artifactId>spring-expression</artifactId>
215                         <version>${spring.version}</version>
216                         <scope>test</scope>
217                 </dependency>
218
219                 <!-- TITAN -->
220                 <dependency>
221                         <groupId>com.thinkaurelius.titan</groupId>
222                         <artifactId>titan-core</artifactId>
223                         <version>${titan.version}</version>
224                         <scope>provided</scope>
225                         <exclusions>
226                                 <exclusion>
227                                         <groupId>org.json</groupId>
228                                         <artifactId>json</artifactId>
229                                 </exclusion>
230                                 <exclusion>
231                                         <artifactId>slf4j-log4j12</artifactId>
232                                         <groupId>org.slf4j</groupId>
233                                 </exclusion>
234                         </exclusions>
235                 </dependency>
236
237                 <dependency>
238                         <groupId>org.onap.sdc.sdc-titan-cassandra</groupId>
239                         <artifactId>sdc-titan-cassandra</artifactId>
240                         <version>${sdc.titan.version}</version>
241                         <scope>provided</scope>
242                         <exclusions>
243                                 <exclusion>
244                                         <groupId>org.slf4j</groupId>
245                                         <artifactId>slf4j-log4j12</artifactId>
246                                 </exclusion>
247                         </exclusions>
248                 </dependency>
249
250                 <dependency>
251                         <groupId>org.apache.commons</groupId>
252                         <artifactId>commons-lang3</artifactId>
253                         <version>${lang3.version}</version>
254                         <scope>provided</scope>
255                 </dependency>
256                 <!-- TITAN END -->
257
258                 <!-- CASSANDRA -->
259                 <dependency>
260                         <groupId>com.datastax.cassandra</groupId>
261                         <artifactId>cassandra-driver-core</artifactId>
262                         <version>${cassandra.driver.version}</version>
263                         <scope>provided</scope>
264                 </dependency>
265                 <dependency>
266                         <groupId>com.datastax.cassandra</groupId>
267                         <artifactId>cassandra-driver-mapping</artifactId>
268                         <version>${cassandra.driver.version}</version>
269                         <scope>provided</scope>
270                 </dependency>
271                 <!-- CASSANDRA END -->
272         </dependencies>
273
274         <build>
275
276                 <pluginManagement>
277                         <plugins>
278                                 <!--This plugin's configuration is used to store Eclipse m2e settings
279                                         only. It has no influence on the Maven build itself. -->
280                                 <plugin>
281                                         <groupId>org.eclipse.m2e</groupId>
282                                         <artifactId>lifecycle-mapping</artifactId>
283                                         <version>1.0.0</version>
284                                         <configuration>
285                                                 <lifecycleMappingMetadata>
286                                                         <pluginExecutions>
287                                                                 <pluginExecution>
288                                                                         <pluginExecutionFilter>
289                                                                                 <groupId>fr.fastconnect</groupId>
290                                                                                 <artifactId>plantuml-maven-plugin</artifactId>
291                                                                                 <versionRange>[1.0.0,)</versionRange>
292                                                                                 <goals>
293                                                                                         <goal>plant</goal>
294                                                                                 </goals>
295                                                                         </pluginExecutionFilter>
296                                                                         <action>
297                                                                                 <ignore />
298                                                                         </action>
299                                                                 </pluginExecution>
300                                                         </pluginExecutions>
301                                                 </lifecycleMappingMetadata>
302                                         </configuration>
303                                 </plugin>
304                                 <plugin>
305                                         <groupId>org.apache.maven.plugins</groupId>
306                                         <artifactId>maven-deploy-plugin</artifactId>
307                                         <version>2.7</version>
308                                         <configuration>
309                                                 <skip>true</skip>
310                                         </configuration>
311                                 </plugin>
312                         </plugins>
313                 </pluginManagement>
314         </build>
315 </project>