Final commit to master merge from
[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.2.0-SNAPSHOT</version>
12         </parent>
13
14         <properties>
15                 <sonar.skip>true</sonar.skip>
16         </properties>
17
18         <dependencies>
19                 <!-- Common of SDC -->
20                 <dependency>
21                         <groupId>org.openecomp.sdc</groupId>
22                         <artifactId>common-app-api</artifactId>
23                         <version>${project.version}</version>
24                         <scope>provided</scope>
25                 </dependency>
26                 
27                 <dependency>
28                         <groupId>org.openecomp.sdc.be</groupId>
29                         <artifactId>common-be</artifactId>
30                         <version>${project.version}</version>
31                         <scope>provided</scope>
32                 </dependency>
33
34                 <dependency>
35                         <groupId>ch.qos.logback</groupId>
36                         <artifactId>logback-classic</artifactId>
37             <version>${logback.version}</version>
38                         <scope>provided</scope>
39                 </dependency>
40
41                 <dependency>
42                         <groupId>ch.qos.logback</groupId>
43                         <artifactId>logback-core</artifactId>
44                         <version>${logback.version}</version>
45                         <scope>provided</scope>
46                 </dependency>
47
48                 <dependency>
49                         <groupId>org.elasticsearch</groupId>
50                         <artifactId>elasticsearch</artifactId>
51                         <version>${elastic-search.version}</version>
52                         <scope>provided</scope>
53                 </dependency>
54
55                 <dependency>
56                         <groupId>org.elasticsearch.plugin</groupId>
57                         <artifactId>shield</artifactId>
58                         <version>${elastic-search.version}</version>
59                         <scope>provided</scope>
60                 </dependency>
61
62                 <!-- SPRING -->
63                 <dependency>
64                         <groupId>org.springframework</groupId>
65                         <artifactId>spring-context</artifactId>
66                         <version>${spring.version}</version>
67                         <scope>provided</scope>
68                 </dependency>
69
70                 <dependency>
71                         <groupId>org.springframework</groupId>
72                         <artifactId>spring-context-support</artifactId>
73                         <version>${spring.version}</version>
74                         <scope>provided</scope>
75                 </dependency>
76
77                 <dependency>
78                         <groupId>org.springframework</groupId>
79                         <artifactId>spring-beans</artifactId>
80                         <version>${spring.version}</version>
81                         <scope>provided</scope>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>org.aspectj</groupId>
86                         <artifactId>aspectjrt</artifactId>
87                         <version>${aspectj.version}</version>
88                 </dependency>
89
90                 <dependency>
91                         <groupId>org.aspectj</groupId>
92                         <artifactId>aspectjweaver</artifactId>
93                         <version>${aspectj.version}</version>
94                 </dependency>
95
96                 <dependency>
97                         <groupId>com.fasterxml.jackson.core</groupId>
98                         <artifactId>jackson-databind</artifactId>
99                         <version>${jackson.version}</version>
100                         <scope>provided</scope>
101                 </dependency>
102
103                 <dependency>
104                         <groupId>org.slf4j</groupId>
105                         <artifactId>slf4j-api</artifactId>
106             <version>${slf4j-api.version}</version>
107                         <scope>provided</scope>
108                 </dependency>
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.yaml</groupId>
130                         <artifactId>snakeyaml</artifactId>
131                         <version>${snakeyaml.version}</version>
132                         <scope>provided</scope>
133                 </dependency>
134
135                 <dependency>
136                         <groupId>com.google.code.gson</groupId>
137                         <artifactId>gson</artifactId>
138                         <version>${gson.version}</version>
139                         <scope>provided</scope>
140                 </dependency>
141
142                 <dependency>
143                         <groupId>org.functionaljava</groupId>
144                         <artifactId>functionaljava</artifactId>
145                         <version>${functionaljava.version}</version>
146                         <scope>provided</scope>
147                 </dependency>
148
149                 <!-- http client -->
150                 <dependency>
151                         <groupId>org.apache.httpcomponents</groupId>
152                         <artifactId>httpclient</artifactId>
153             <version>${httpclient.version}</version>
154                         <scope>provided</scope>
155                 </dependency>
156
157                 <dependency>
158                         <groupId>org.apache.httpcomponents</groupId>
159                         <artifactId>httpcore</artifactId>
160                         <version>${httpcore.version}</version>
161                         <scope>provided</scope>
162                 </dependency>
163
164                 <dependency>
165                         <groupId>com.google.guava</groupId>
166                         <artifactId>guava</artifactId>
167                         <version>${guava.version}</version>
168                         <scope>provided</scope>
169                 </dependency>
170
171                 <!-- TEST -->
172                 <dependency>
173                         <groupId>org.springframework</groupId>
174                         <artifactId>spring-test</artifactId>
175                         <version>${spring.version}</version>
176                         <scope>test</scope>
177                 </dependency>
178
179                 <dependency>
180                         <groupId>junit</groupId>
181                         <artifactId>junit</artifactId>
182                         <version>${junit.version}</version>
183                         <scope>test</scope>
184                 </dependency>
185
186                 <dependency>
187                         <groupId>org.apache.commons</groupId>
188                         <artifactId>commons-jci-core</artifactId>
189                         <version>${commons-jci-core.version}</version>
190                         <scope>test</scope>
191                 </dependency>
192
193                 <dependency>
194                         <groupId>org.springframework</groupId>
195                         <artifactId>spring-expression</artifactId>
196                         <version>${spring.version}</version>
197                         <scope>test</scope>
198                 </dependency>
199
200                 <dependency>
201                         <groupId>org.springframework</groupId>
202                         <artifactId>spring-aop</artifactId>
203                         <version>${spring.version}</version>
204                         <scope>test</scope>
205                 </dependency>
206
207                 <!-- TITAN -->
208                 <dependency>
209                         <groupId>com.thinkaurelius.titan</groupId>
210                         <artifactId>titan-core</artifactId>
211                         <version>${titan.version}</version>
212                         <scope>provided</scope>
213                         <exclusions>
214                                 <exclusion>
215                                         <groupId>org.json</groupId>
216                                         <artifactId>json</artifactId>
217                                 </exclusion>
218                                 <exclusion>
219                                         <artifactId>slf4j-log4j12</artifactId>
220                                         <groupId>org.slf4j</groupId>
221                                 </exclusion>
222                         </exclusions>
223                 </dependency>
224
225                 <dependency>
226                         <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
227                         <artifactId>sdc-titan-cassandra</artifactId>
228                         <version>${titan.version}</version>
229                         <scope>provided</scope>
230                         <exclusions>
231                                 <exclusion>
232                                         <groupId>org.slf4j</groupId>
233                                         <artifactId>slf4j-log4j12</artifactId>
234                                 </exclusion>
235                         </exclusions>
236                 </dependency>
237
238                 <dependency>
239                         <groupId>org.apache.commons</groupId>
240                         <artifactId>commons-lang3</artifactId>
241                         <version>${lang3.version}</version>
242                         <scope>provided</scope>
243                 </dependency>
244                 <!-- TITAN END -->
245
246                 <!-- CASSANDRA -->
247                 <dependency>
248                         <groupId>com.datastax.cassandra</groupId>
249                         <artifactId>cassandra-driver-core</artifactId>
250                         <version>${cassandra.driver.version}</version>
251                         <scope>provided</scope>
252                 </dependency>
253                 <dependency>
254                         <groupId>com.datastax.cassandra</groupId>
255                         <artifactId>cassandra-driver-mapping</artifactId>
256                         <version>${cassandra.driver.version}</version>
257                         <scope>provided</scope>
258                 </dependency>
259                 <!-- CASSANDRA END -->
260
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>