fix pom
[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                         <version>${mockito.version}</version>
122                         <scope>test</scope>
123                 </dependency>
124
125                 <dependency>
126                         <groupId>org.yaml</groupId>
127                         <artifactId>snakeyaml</artifactId>
128                         <version>${snakeyaml.version}</version>
129                         <scope>provided</scope>
130                 </dependency>
131
132                 <dependency>
133                         <groupId>com.google.code.gson</groupId>
134                         <artifactId>gson</artifactId>
135                         <version>${gson.version}</version>
136                         <scope>provided</scope>
137                 </dependency>
138
139                 <dependency>
140                         <groupId>org.functionaljava</groupId>
141                         <artifactId>functionaljava</artifactId>
142                         <version>${functionaljava.version}</version>
143                         <scope>provided</scope>
144                 </dependency>
145
146                 <!-- http client -->
147                 <dependency>
148                         <groupId>org.apache.httpcomponents</groupId>
149                         <artifactId>httpclient</artifactId>
150             <version>${httpclient.version}</version>
151                         <scope>provided</scope>
152                 </dependency>
153
154                 <dependency>
155                         <groupId>org.apache.httpcomponents</groupId>
156                         <artifactId>httpcore</artifactId>
157                         <version>${httpcore.version}</version>
158                         <scope>provided</scope>
159                 </dependency>
160
161                 <dependency>
162                         <groupId>com.google.guava</groupId>
163                         <artifactId>guava</artifactId>
164                         <version>${guava.version}</version>
165                         <scope>provided</scope>
166                 </dependency>
167
168                 <!-- TEST -->
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
258         </dependencies>
259
260         <build>
261
262                 <pluginManagement>
263                         <plugins>
264                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
265                                         only. It has no influence on the Maven build itself. -->
266                                 <plugin>
267                                         <groupId>org.eclipse.m2e</groupId>
268                                         <artifactId>lifecycle-mapping</artifactId>
269                                         <version>1.0.0</version>
270                                         <configuration>
271                                                 <lifecycleMappingMetadata>
272                                                         <pluginExecutions>
273                                                                 <pluginExecution>
274                                                                         <pluginExecutionFilter>
275                                                                                 <groupId>fr.fastconnect</groupId>
276                                                                                 <artifactId>plantuml-maven-plugin</artifactId>
277                                                                                 <versionRange>[1.0.0,)</versionRange>
278                                                                                 <goals>
279                                                                                         <goal>plant</goal>
280                                                                                 </goals>
281                                                                         </pluginExecutionFilter>
282                                                                         <action>
283                                                                                 <ignore />
284                                                                         </action>
285                                                                 </pluginExecution>
286                                                         </pluginExecutions>
287                                                 </lifecycleMappingMetadata>
288                                         </configuration>
289                                 </plugin>
290                                 <plugin>
291                                         <groupId>org.apache.maven.plugins</groupId>
292                                         <artifactId>maven-deploy-plugin</artifactId>
293                                         <version>2.7</version>
294                                         <configuration>
295                                                 <skip>true</skip>
296                                         </configuration>
297                                 </plugin>
298                         </plugins>
299                 </pluginManagement>
300         </build>
301 </project>