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