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