soner enable fix
[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         <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>ch.qos.logback</groupId>
39                         <artifactId>logback-core</artifactId>
40                         <version>${logback.version}</version>
41                         <scope>provided</scope>
42                 </dependency>
43
44                 <dependency>
45                         <groupId>org.elasticsearch</groupId>
46                         <artifactId>elasticsearch</artifactId>
47                         <version>${elastic-search.version}</version>
48                         <scope>provided</scope>
49                 </dependency>
50
51                 <dependency>
52                         <groupId>org.elasticsearch.plugin</groupId>
53                         <artifactId>shield</artifactId>
54                         <version>${elastic-search.version}</version>
55                         <scope>provided</scope>
56                 </dependency>
57
58                 <!-- SPRING -->
59                 <dependency>
60                         <groupId>org.springframework</groupId>
61                         <artifactId>spring-context</artifactId>
62                         <version>${spring.version}</version>
63                         <scope>provided</scope>
64                 </dependency>
65
66                 <dependency>
67                         <groupId>org.springframework</groupId>
68                         <artifactId>spring-context-support</artifactId>
69                         <version>${spring.version}</version>
70                         <scope>provided</scope>
71                 </dependency>
72
73                 <dependency>
74                         <groupId>org.springframework</groupId>
75                         <artifactId>spring-beans</artifactId>
76                         <version>${spring.version}</version>
77                         <scope>provided</scope>
78                 </dependency>
79
80                 <dependency>
81                         <groupId>org.aspectj</groupId>
82                         <artifactId>aspectjrt</artifactId>
83                         <version>${aspectj.version}</version>
84                 </dependency>
85
86                 <dependency>
87                         <groupId>org.aspectj</groupId>
88                         <artifactId>aspectjweaver</artifactId>
89                         <version>${aspectj.version}</version>
90                 </dependency>
91
92                 <dependency>
93                         <groupId>com.fasterxml.jackson.core</groupId>
94                         <artifactId>jackson-databind</artifactId>
95                         <version>${jackson.version}</version>
96                         <scope>provided</scope>
97                 </dependency>
98
99                 <dependency>
100                         <groupId>org.slf4j</groupId>
101                         <artifactId>slf4j-api</artifactId>
102             <version>${slf4j-api.version}</version>
103                         <scope>provided</scope>
104                 </dependency>
105                 <dependency>
106                         <groupId>com.googlecode.json-simple</groupId>
107                         <artifactId>json-simple</artifactId>
108                         <version>${json-simple.version}</version>
109                         <scope>provided</scope>
110                 </dependency>
111                 
112                 <dependency>
113                         <groupId>org.apache.lucene</groupId>
114                         <artifactId>lucene-regex</artifactId>
115                         <version>${regex.version}</version>
116                 </dependency>
117
118                 <dependency>
119                         <groupId>org.mockito</groupId>
120                         <artifactId>mockito-core</artifactId>
121                         <scope>test</scope>
122                 </dependency>
123
124                 <dependency>
125                         <groupId>org.yaml</groupId>
126                         <artifactId>snakeyaml</artifactId>
127                         <version>${snakeyaml.version}</version>
128                         <scope>provided</scope>
129                 </dependency>
130
131                 <dependency>
132                         <groupId>com.google.code.gson</groupId>
133                         <artifactId>gson</artifactId>
134                         <version>${gson.version}</version>
135                         <scope>provided</scope>
136                 </dependency>
137
138                 <dependency>
139                         <groupId>org.functionaljava</groupId>
140                         <artifactId>functionaljava</artifactId>
141                         <version>${functionaljava.version}</version>
142                         <scope>provided</scope>
143                 </dependency>
144
145                 <!-- http client -->
146                 <dependency>
147                         <groupId>org.apache.httpcomponents</groupId>
148                         <artifactId>httpclient</artifactId>
149             <version>${httpclient.version}</version>
150                         <scope>provided</scope>
151                 </dependency>
152
153                 <dependency>
154                         <groupId>org.apache.httpcomponents</groupId>
155                         <artifactId>httpcore</artifactId>
156                         <version>${httpcore.version}</version>
157                         <scope>provided</scope>
158                 </dependency>
159
160                 <dependency>
161                         <groupId>com.google.guava</groupId>
162                         <artifactId>guava</artifactId>
163                         <version>${guava.version}</version>
164                         <scope>provided</scope>
165                 </dependency>
166
167                 <!-- TEST -->
168                 <dependency>
169                         <groupId>org.springframework</groupId>
170                         <artifactId>spring-test</artifactId>
171                         <version>${spring.version}</version>
172                         <scope>test</scope>
173                 </dependency>
174
175                 <dependency>
176                         <groupId>junit</groupId>
177                         <artifactId>junit</artifactId>
178                         <version>${junit.version}</version>
179                         <scope>test</scope>
180                 </dependency>
181
182                 <dependency>
183                         <groupId>org.apache.commons</groupId>
184                         <artifactId>commons-jci-core</artifactId>
185                         <version>${commons-jci-core.version}</version>
186                         <scope>test</scope>
187                 </dependency>
188
189                 <dependency>
190                         <groupId>org.springframework</groupId>
191                         <artifactId>spring-expression</artifactId>
192                         <version>${spring.version}</version>
193                         <scope>test</scope>
194                 </dependency>
195
196                 <dependency>
197                         <groupId>org.springframework</groupId>
198                         <artifactId>spring-aop</artifactId>
199                         <version>${spring.version}</version>
200                         <scope>test</scope>
201                 </dependency>
202
203                 <!-- TITAN -->
204                 <dependency>
205                         <groupId>com.thinkaurelius.titan</groupId>
206                         <artifactId>titan-core</artifactId>
207                         <version>${titan.version}</version>
208                         <scope>provided</scope>
209                         <exclusions>
210                                 <exclusion>
211                                         <groupId>org.json</groupId>
212                                         <artifactId>json</artifactId>
213                                 </exclusion>
214                                 <exclusion>
215                                         <artifactId>slf4j-log4j12</artifactId>
216                                         <groupId>org.slf4j</groupId>
217                                 </exclusion>
218                         </exclusions>
219                 </dependency>
220
221                 <dependency>
222                         <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
223                         <artifactId>sdc-titan-cassandra</artifactId>
224                         <version>${titan.version}</version>
225                         <scope>provided</scope>
226                         <exclusions>
227                                 <exclusion>
228                                         <groupId>org.slf4j</groupId>
229                                         <artifactId>slf4j-log4j12</artifactId>
230                                 </exclusion>
231                         </exclusions>
232                 </dependency>
233
234                 <dependency>
235                         <groupId>org.apache.commons</groupId>
236                         <artifactId>commons-lang3</artifactId>
237                         <version>${lang3.version}</version>
238                         <scope>provided</scope>
239                 </dependency>
240                 <!-- TITAN END -->
241
242                 <!-- CASSANDRA -->
243                 <dependency>
244                         <groupId>com.datastax.cassandra</groupId>
245                         <artifactId>cassandra-driver-core</artifactId>
246                         <version>${cassandra.driver.version}</version>
247                         <scope>provided</scope>
248                 </dependency>
249                 <dependency>
250                         <groupId>com.datastax.cassandra</groupId>
251                         <artifactId>cassandra-driver-mapping</artifactId>
252                         <version>${cassandra.driver.version}</version>
253                         <scope>provided</scope>
254                 </dependency>
255                 <!-- CASSANDRA END -->
256
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>