Upgrade libthrift
[sdc.git] / catalog-model / 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
4         <modelVersion>4.0.0</modelVersion>
5
6         <groupId>org.openecomp.sdc.be</groupId>
7         <artifactId>catalog-model</artifactId>
8
9         <parent>
10                 <groupId>org.openecomp.sdc</groupId>
11                 <artifactId>sdc-main</artifactId>
12                 <version>1.5.0-SNAPSHOT</version>
13         </parent>
14
15         <dependencies>
16                 <!-- Common of SDC -->
17                 <dependency>
18                         <groupId>org.openecomp.sdc</groupId>
19                         <artifactId>common-app-api</artifactId>
20                         <version>${project.version}</version>
21                         <scope>provided</scope>
22                 </dependency>
23
24                 <dependency>
25                         <groupId>org.openecomp.sdc.be</groupId>
26                         <artifactId>common-be</artifactId>
27                         <version>${project.version}</version>
28                         <scope>provided</scope>
29                 </dependency>
30
31                 <dependency>
32                         <groupId>ch.qos.logback</groupId>
33                         <artifactId>logback-classic</artifactId>
34                         <version>${logback.version}</version>
35                         <scope>provided</scope>
36                 </dependency>
37                 <dependency>
38                         <groupId>com.google.code.bean-matchers</groupId>
39                         <artifactId>bean-matchers</artifactId>
40                         <version>${bean-matcher.version}</version>
41                         <scope>test</scope>
42                 </dependency>
43
44                 <dependency>
45                         <groupId>ch.qos.logback</groupId>
46                         <artifactId>logback-core</artifactId>
47                         <version>${logback.version}</version>
48                         <scope>provided</scope>
49                 </dependency>
50
51                 <!-- catalog dao -->
52                 <dependency>
53                         <groupId>org.openecomp.sdc.be</groupId>
54                         <artifactId>catalog-dao</artifactId>
55                         <version>${project.version}</version>
56                         <scope>provided</scope>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>com.google.guava</groupId>
61                         <artifactId>guava</artifactId>
62                         <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
63                         <scope>provided</scope>
64                 </dependency>
65
66                 <dependency>
67                         <groupId>org.functionaljava</groupId>
68                         <artifactId>functionaljava</artifactId>
69                         <version>${functionaljava.version}</version>
70                         <scope>provided</scope>
71                 </dependency>
72
73                 <!-- spring -->
74                 <dependency>
75                         <groupId>org.springframework</groupId>
76                         <artifactId>spring-beans</artifactId>
77                         <version>${spring.version}</version>
78                         <scope>provided</scope>
79                 </dependency>
80
81                 <dependency>
82                         <groupId>org.springframework</groupId>
83                         <artifactId>spring-context</artifactId>
84                         <version>${spring.version}</version>
85                         <scope>provided</scope>
86                 </dependency>
87
88                 <dependency>
89                         <groupId>javax.validation</groupId>
90                         <artifactId>validation-api</artifactId>
91                         <version>1.1.0.Final</version>
92                 </dependency>
93
94                 <dependency>
95                         <groupId>org.hibernate</groupId>
96                         <artifactId>hibernate-validator</artifactId>
97                         <version>5.3.6.Final</version>
98                 </dependency>
99
100                 <!-- Gson -->
101                 <dependency>
102                         <groupId>com.google.code.gson</groupId>
103                         <artifactId>gson</artifactId>
104                         <version>${gson.version}</version>
105                         <scope>provided</scope>
106                 </dependency>
107
108                 <dependency>
109                         <groupId>org.janusgraph</groupId>
110                         <artifactId>janusgraph-core</artifactId>
111                         <version>${janusgraph.version}</version>
112                         <scope>provided</scope>
113                         <exclusions>
114                                 <exclusion>
115                                         <groupId>org.json</groupId>
116                                         <artifactId>json</artifactId>
117                                 </exclusion>
118                                 <exclusion>
119                                         <artifactId>slf4j-log4j12</artifactId>
120                                         <groupId>org.slf4j</groupId>
121                                 </exclusion>
122                                 <exclusion>
123                                         <artifactId>commons-collections</artifactId>
124                                         <groupId>commons-collections</groupId>
125                                 </exclusion>
126                                 <exclusion>
127                                         <artifactId>groovy</artifactId>
128                                         <groupId>org.codehaus.groovy</groupId>
129                                 </exclusion>
130                                 <exclusion>
131                                         <groupId>org.apache.thrift</groupId>
132                                         <artifactId>libthrift</artifactId>
133                                 </exclusion>
134                         </exclusions>
135                 </dependency>
136
137                 <dependency>
138                         <groupId>org.janusgraph</groupId>
139                         <artifactId>janusgraph-cassandra</artifactId>
140                         <version>${janusgraph.version}</version>
141                         <scope>provided</scope>
142                         <exclusions>
143                                 <exclusion>
144                                         <artifactId>slf4j-log4j12</artifactId>
145                                         <groupId>org.slf4j</groupId>
146                                 </exclusion>
147                         </exclusions>
148                 </dependency>
149
150                 <dependency>
151                         <groupId>org.apache.commons</groupId>
152                         <artifactId>commons-lang3</artifactId>
153                         <version>${lang3.version}</version>
154                         <scope>provided</scope>
155                 </dependency>
156
157                 <!-- http client -->
158                 <dependency>
159                         <groupId>org.apache.httpcomponents</groupId>
160                         <artifactId>httpclient</artifactId>
161                         <version>${httpclient.version}</version>
162                         <scope>provided</scope>
163                 </dependency>
164
165                 <dependency>
166                         <groupId>org.apache.httpcomponents</groupId>
167                         <artifactId>httpcore</artifactId>
168                         <version>${httpcore.version}</version>
169                         <scope>provided</scope>
170                 </dependency>
171
172                 <!-- CASSANDRA -->
173                 <dependency>
174                         <groupId>com.datastax.cassandra</groupId>
175                         <artifactId>cassandra-driver-core</artifactId>
176                         <version>${cassandra.driver.version}</version>
177                         <scope>provided</scope>
178                 </dependency>
179                 <dependency>
180                         <groupId>com.datastax.cassandra</groupId>
181                         <artifactId>cassandra-driver-mapping</artifactId>
182                         <version>${cassandra.driver.version}</version>
183                         <scope>provided</scope>
184                 </dependency>
185                 <dependency>
186                         <groupId>org.apache.thrift</groupId>
187                         <artifactId>libthrift</artifactId>
188                         <version>${libthrift.version}</version>
189                 </dependency>
190                 <!-- CASSANDRA END -->
191
192                 <dependency>
193                         <groupId>junit</groupId>
194                         <artifactId>junit</artifactId>
195                         <version>${junit.version}</version>
196                         <scope>test</scope>
197                 </dependency>
198
199                 <dependency>
200                         <groupId>org.mockito</groupId>
201                         <artifactId>mockito-core</artifactId>
202                         <scope>test</scope>
203                 </dependency>
204                 
205                 <dependency>
206                 <groupId>org.jmockit</groupId>
207                         <artifactId>jmockit</artifactId>
208                         <scope>test</scope>
209                 </dependency>
210                 
211                 <dependency>
212                         <groupId>org.assertj</groupId>
213                         <artifactId>assertj-core</artifactId>
214                         <scope>test</scope>
215                 </dependency>
216
217                 <dependency>
218                         <groupId>org.springframework</groupId>
219                         <artifactId>spring-test</artifactId>
220                         <version>${spring.version}</version>
221                         <scope>test</scope>
222                 </dependency>
223
224                 <dependency>
225                         <groupId>org.aspectj</groupId>
226                         <artifactId>aspectjrt</artifactId>
227                         <version>${aspectj.version}</version>
228                         <scope>test</scope>
229                 </dependency>
230
231                 <dependency>
232                         <groupId>org.aspectj</groupId>
233                         <artifactId>aspectjweaver</artifactId>
234                         <version>${aspectj.version}</version>
235                         <scope>test</scope>
236                 </dependency>
237
238                 <dependency>
239                         <groupId>org.springframework</groupId>
240                         <artifactId>spring-web</artifactId>
241                         <version>${spring.version}</version>
242                         <scope>test</scope>
243                 </dependency>
244
245                 <dependency>
246                         <groupId>org.springframework</groupId>
247                         <artifactId>spring-tx</artifactId>
248                         <scope>test</scope>
249                         <version>4.0.7.RELEASE</version>
250                 </dependency>
251
252                 <dependency>
253                         <groupId>org.apache.commons</groupId>
254                         <artifactId>commons-jci-core</artifactId>
255                         <version>${commons-jci-core.version}</version>
256                         <scope>test</scope>
257                 </dependency>
258                 <dependency>
259                         <groupId>org.powermock</groupId>
260                         <artifactId>powermock-module-junit4</artifactId>
261                         <version>1.7.0RC4</version>
262                         <scope>test</scope>
263                 </dependency>
264                 <dependency>
265                         <groupId>org.powermock</groupId>
266                         <artifactId>powermock-api-mockito-common</artifactId>
267                         <version>1.6.5</version>
268                         <scope>test</scope>
269                 </dependency>
270
271                 <dependency>
272                         <groupId>org.codehaus.groovy</groupId>
273                         <artifactId>groovy</artifactId>
274                 </dependency>
275
276                 <dependency>
277                         <groupId>io.netty</groupId>
278                         <artifactId>netty-all</artifactId>
279                 </dependency>
280         <dependency>
281             <groupId>org.apache.commons</groupId>
282             <artifactId>commons-collections4</artifactId>
283             <version>${commons.collections.version}</version>
284         </dependency>
285
286                 <dependency>
287                         <groupId>io.netty</groupId>
288                         <artifactId>netty-handler</artifactId>
289                 </dependency>
290         <dependency>
291             <groupId>org.projectlombok</groupId>
292             <artifactId>lombok</artifactId>
293                         <version>${lombok.version}</version>
294         </dependency>
295         <dependency>
296             <groupId>joda-time</groupId>
297             <artifactId>joda-time</artifactId>
298             <version>${joda.time.version}</version>
299         </dependency>
300
301     </dependencies>
302         <build>
303                 <plugins>
304                         <plugin>
305                                 <groupId>org.apache.maven.plugins</groupId>
306                                 <artifactId>maven-deploy-plugin</artifactId>
307                                 <configuration>
308                                         <skip>true</skip>
309                                 </configuration>
310                         </plugin>
311                         <plugin>
312                                 <groupId>com.github.sylvainlaurent.maven</groupId>
313                                 <artifactId>yaml-json-validator-maven-plugin</artifactId>
314                                 <executions>
315                                         <execution>
316                                                 <id>validate</id>
317                                                 <phase>validate</phase>
318                                                 <goals>
319                                                         <goal>validate</goal>
320                                                 </goals>
321                                                 <configuration>
322                                                         <validationSets>
323                                                                 <validationSet>
324                                                                         <includes>
325                                                                                 <include>src/main/resources/**/*.y*ml</include>
326                                                                                 <include>src/test/resources/**/*.y*ml</include>
327                                                                         </includes>
328                                                                 </validationSet>
329                                                                 <validationSet>
330                                                                         <includes>
331                                                                                 <include>src/main/resources/**/*.json</include>
332                                                                                 <include>src/test/resources/**/*.json</include>
333                                                                         </includes>
334                                                                 </validationSet>
335                                                         </validationSets>
336                                                 </configuration>
337                                         </execution>
338                                 </executions>
339                         </plugin>
340                 </plugins>
341         </build>
342 </project>