Disable SecurityFilter
[sdc.git] / catalog-dao / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 SDC
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10         *
11      http://www.apache.org/licenses/LICENSE-2.0
12         *
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 Modifications copyright (c) 2018 Nokia
20 ================================================================================
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23                  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25
26         <groupId>org.openecomp.sdc.be</groupId>
27         <artifactId>catalog-dao</artifactId>
28
29         <parent>
30                 <groupId>org.openecomp.sdc</groupId>
31                 <artifactId>sdc-main</artifactId>
32                 <version>1.7.0-SNAPSHOT</version>
33         </parent>
34
35         <dependencies>
36                 <!-- Common of SDC -->
37                 <dependency>
38                         <groupId>org.openecomp.sdc</groupId>
39                         <artifactId>common-app-api</artifactId>
40                         <version>${project.version}</version>
41                         <scope>provided</scope>
42                 </dependency>
43
44                 <dependency>
45                         <groupId>org.openecomp.sdc.be</groupId>
46                         <artifactId>common-be</artifactId>
47                         <version>${project.version}</version>
48                         <scope>provided</scope>
49                 </dependency>
50
51                 <dependency>
52                         <groupId>ch.qos.logback</groupId>
53                         <artifactId>logback-classic</artifactId>
54                         <version>${logback.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-core</artifactId>
69                         <version>${spring.version}</version>
70                         <scope>provided</scope>
71                 </dependency>
72
73                 <dependency>
74                         <groupId>org.springframework</groupId>
75                         <artifactId>spring-context-support</artifactId>
76                         <version>${spring.version}</version>
77                         <scope>provided</scope>
78                 </dependency>
79
80                 <dependency>
81                         <groupId>org.springframework</groupId>
82                         <artifactId>spring-beans</artifactId>
83                         <version>${spring.version}</version>
84                         <scope>provided</scope>
85                 </dependency>
86
87                 <dependency>
88                         <groupId>org.aspectj</groupId>
89                         <artifactId>aspectjrt</artifactId>
90                         <version>${aspectj.version}</version>
91                 </dependency>
92
93                 <dependency>
94                         <groupId>org.aspectj</groupId>
95                         <artifactId>aspectjweaver</artifactId>
96                         <version>${aspectj.version}</version>
97                 </dependency>
98
99                 <dependency>
100                         <groupId>org.springframework</groupId>
101                         <artifactId>spring-aop</artifactId>
102                         <version>${spring.version}</version>
103                 </dependency>
104
105                 <dependency>
106                         <groupId>org.springframework</groupId>
107                         <artifactId>spring-tx</artifactId>
108                         <version>${spring.version}</version>
109                 </dependency>
110
111                 <dependency>
112                         <groupId>com.fasterxml.jackson.core</groupId>
113                         <artifactId>jackson-databind</artifactId>
114                         <version>${jackson.version}</version>
115                 </dependency>
116
117                 <dependency>
118                         <groupId>com.fasterxml.jackson.core</groupId>
119                         <artifactId>jackson-core</artifactId>
120                         <version>${jackson.version}</version>
121                 </dependency>
122
123                 <dependency>
124                         <groupId>com.googlecode.json-simple</groupId>
125                         <artifactId>json-simple</artifactId>
126                         <version>${json-simple.version}</version>
127                         <scope>provided</scope>
128                 </dependency>
129
130                 <dependency>
131                         <groupId>org.apache.lucene</groupId>
132                         <artifactId>lucene-regex</artifactId>
133                         <version>${regex.version}</version>
134                 </dependency>
135
136                 <dependency>
137                         <groupId>org.mockito</groupId>
138                         <artifactId>mockito-core</artifactId>
139                         <scope>test</scope>
140                 </dependency>
141
142                 <dependency>
143                         <groupId>org.jmockit</groupId>
144                         <artifactId>jmockit</artifactId>
145                         <scope>test</scope>
146                 </dependency>
147
148                 <dependency>
149                         <groupId>com.google.code.bean-matchers</groupId>
150                         <artifactId>bean-matchers</artifactId>
151                         <version>${bean-matchers.version}</version>
152                         <scope>test</scope>
153                 </dependency>
154
155                 <dependency>
156                         <groupId>org.yaml</groupId>
157                         <artifactId>snakeyaml</artifactId>
158                         <version>${snakeyaml.version}</version>
159                         <scope>provided</scope>
160                 </dependency>
161
162                 <dependency>
163                         <groupId>com.google.code.gson</groupId>
164                         <artifactId>gson</artifactId>
165                         <version>${gson.version}</version>
166                         <scope>provided</scope>
167                 </dependency>
168
169                 <dependency>
170                         <groupId>org.functionaljava</groupId>
171                         <artifactId>functionaljava</artifactId>
172                         <version>${functionaljava.version}</version>
173                         <scope>provided</scope>
174                 </dependency>
175
176                 <!-- http client -->
177                 <dependency>
178                         <groupId>org.apache.httpcomponents</groupId>
179                         <artifactId>httpclient</artifactId>
180                         <version>${httpclient.version}</version>
181                         <scope>provided</scope>
182                 </dependency>
183
184                 <dependency>
185                         <groupId>org.apache.httpcomponents</groupId>
186                         <artifactId>httpcore</artifactId>
187                         <version>${httpcore.version}</version>
188                         <scope>provided</scope>
189                 </dependency>
190
191                 <dependency>
192                         <groupId>com.google.guava</groupId>
193                         <artifactId>guava</artifactId>
194                         <version>${guava.version}</version>
195                         <scope>provided</scope>
196                 </dependency>
197
198                 <!-- TEST -->
199                 <dependency>
200                         <groupId>org.assertj</groupId>
201                         <artifactId>assertj-core</artifactId>
202                         <scope>test</scope>
203                 </dependency>
204
205                 <dependency>
206                         <groupId>org.springframework</groupId>
207                         <artifactId>spring-test</artifactId>
208                         <version>${spring.version}</version>
209                         <scope>test</scope>
210                 </dependency>
211
212                 <dependency>
213                         <groupId>junit</groupId>
214                         <artifactId>junit</artifactId>
215                         <version>${junit.version}</version>
216                         <scope>test</scope>
217                 </dependency>
218
219                 <dependency>
220                         <groupId>org.apache.commons</groupId>
221                         <artifactId>commons-jci-core</artifactId>
222                         <version>${commons-jci-core.version}</version>
223                         <scope>test</scope>
224                 </dependency>
225
226                 <dependency>
227                         <groupId>org.springframework</groupId>
228                         <artifactId>spring-expression</artifactId>
229                         <version>${spring.version}</version>
230                         <scope>test</scope>
231                 </dependency>
232
233                 <dependency>
234                         <groupId>org.janusgraph</groupId>
235                         <artifactId>janusgraph-core</artifactId>
236                         <version>${janusgraph.version}</version>
237                         <scope>provided</scope>
238                         <exclusions>
239                                 <exclusion>
240                                         <groupId>org.json</groupId>
241                                         <artifactId>json</artifactId>
242                                 </exclusion>
243                                 <exclusion>
244                                         <artifactId>slf4j-log4j12</artifactId>
245                                         <groupId>org.slf4j</groupId>
246                                 </exclusion>
247                                 <exclusion>
248                                         <artifactId>commons-collections</artifactId>
249                                         <groupId>commons-collections</groupId>
250                                 </exclusion>
251                                 <exclusion>
252                                         <artifactId>groovy</artifactId>
253                                         <groupId>org.codehaus.groovy</groupId>
254                                 </exclusion>
255                         </exclusions>
256                 </dependency>
257
258                 <dependency>
259                         <groupId>org.janusgraph</groupId>
260                         <artifactId>janusgraph-cassandra</artifactId>
261                         <version>${janusgraph.version}</version>
262                         <scope>provided</scope>
263                         <exclusions>
264                                 <exclusion>
265                                         <groupId>org.slf4j</groupId>
266                                         <artifactId>slf4j-log4j12</artifactId>
267                                 </exclusion>
268                         </exclusions>
269                 </dependency>
270
271                 <dependency>
272                         <groupId>org.apache.commons</groupId>
273                         <artifactId>commons-lang3</artifactId>
274                         <version>${lang3.version}</version>
275                         <scope>provided</scope>
276                 </dependency>
277
278                 <!-- CASSANDRA -->
279                 <dependency>
280                         <groupId>com.datastax.cassandra</groupId>
281                         <artifactId>cassandra-driver-core</artifactId>
282                         <version>${cassandra.driver.version}</version>
283                         <scope>provided</scope>
284                         <exclusions>
285                                 <exclusion>
286                                         <groupId>io.netty</groupId>
287                                         <artifactId>netty-handler</artifactId>
288                                 </exclusion>
289                         </exclusions>
290                 </dependency>
291                 <dependency>
292                         <groupId>com.datastax.cassandra</groupId>
293                         <artifactId>cassandra-driver-mapping</artifactId>
294                         <version>${cassandra.driver.version}</version>
295                         <scope>provided</scope>
296                 </dependency>
297                 <dependency>
298                         <groupId>org.cassandraunit</groupId>
299                         <artifactId>cassandra-unit</artifactId>
300                         <version>${cassandra.unit.version}</version>
301                         <scope>test</scope>
302                         <exclusions>
303                                 <exclusion>
304                                         <groupId>org.apache.cassandra</groupId>
305                                         <artifactId>cassandra-all</artifactId>
306                                 </exclusion>
307                                 <exclusion>
308                                         <groupId>org.apache.thrift</groupId>
309                                         <artifactId>libthrift</artifactId>
310                                 </exclusion>
311                         </exclusions>
312                 </dependency>
313                 <dependency>
314                         <groupId>org.apache.cassandra</groupId>
315                         <artifactId>cassandra-all</artifactId>
316                         <version>3.11.3</version>
317                         <scope>test</scope>
318                 </dependency>
319                 <dependency>
320                         <groupId>org.apache.thrift</groupId>
321                         <artifactId>libthrift</artifactId>
322                         <version>${libthrift.version}</version>
323                 </dependency>
324                 <!-- CASSANDRA END -->
325
326                 <dependency>
327                         <groupId>org.codehaus.groovy</groupId>
328                         <artifactId>groovy</artifactId>
329                 </dependency>
330         </dependencies>
331
332         <build>
333
334                 <pluginManagement>
335                         <plugins>
336                                 <!--This plugin's configuration is used to store Eclipse m2e settings
337                                         only. It has no influence on the Maven build itself. -->
338                                 <plugin>
339                                         <groupId>org.eclipse.m2e</groupId>
340                                         <artifactId>lifecycle-mapping</artifactId>
341                                         <version>1.0.0</version>
342                                         <configuration>
343                                                 <lifecycleMappingMetadata>
344                                                         <pluginExecutions>
345                                                                 <pluginExecution>
346                                                                         <pluginExecutionFilter>
347                                                                                 <groupId>fr.fastconnect</groupId>
348                                                                                 <artifactId>plantuml-maven-plugin</artifactId>
349                                                                                 <versionRange>[1.0.0,)</versionRange>
350                                                                                 <goals>
351                                                                                         <goal>plant</goal>
352                                                                                 </goals>
353                                                                         </pluginExecutionFilter>
354                                                                         <action>
355                                                                                 <ignore />
356                                                                         </action>
357                                                                 </pluginExecution>
358                                                         </pluginExecutions>
359                                                 </lifecycleMappingMetadata>
360                                         </configuration>
361                                 </plugin>
362                                 <plugin>
363                                         <groupId>com.github.sylvainlaurent.maven</groupId>
364                                         <artifactId>yaml-json-validator-maven-plugin</artifactId>
365                                         <executions>
366                                                 <execution>
367                                                         <id>validate</id>
368                                                         <phase>validate</phase>
369                                                         <goals>
370                                                                 <goal>validate</goal>
371                                                         </goals>
372                                                         <configuration>
373                                                                 <validationSets>
374                                                                         <validationSet>
375                                                                                 <includes>
376                                                                                         <include>src/main/resources/**/*.y*ml</include>
377                                                                                         <include>src/test/resources/**/*.y*ml</include>
378                                                                                 </includes>
379                                                                         </validationSet>
380                                                                         <validationSet>
381                                                                                 <includes>
382                                                                                         <include>src/main/resources/**/*.json</include>
383                                                                                         <include>src/test/resources/**/*.json</include>
384                                                                                 </includes>
385                                                                         </validationSet>
386                                                                 </validationSets>
387                                                         </configuration>
388                                                 </execution>
389                                         </executions>
390                                 </plugin>
391                         </plugins>
392                 </pluginManagement>
393         </build>
394 </project>