blob: 6ca1580a622278aa39f2da34c3f84869482abda1 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Michael Lando5b593492018-07-29 16:13:45 +03002 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Michael Lando451a3402017-02-19 10:28:42 +02003
4 <modelVersion>4.0.0</modelVersion>
5
6 <groupId>org.openecomp.sdc.be</groupId>
7 <artifactId>catalog-model</artifactId>
8
Michael Lando451a3402017-02-19 10:28:42 +02009 <parent>
10 <groupId>org.openecomp.sdc</groupId>
11 <artifactId>sdc-main</artifactId>
Sonsino, Ofir (os0695)55c536e2019-05-07 18:30:15 +030012 <version>1.5.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020013 </parent>
Michael Lando451a3402017-02-19 10:28:42 +020014
Tal Gitelman51d50f02017-12-10 18:55:03 +020015 <dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030016 <!-- Common of SDC -->
Michael Landoc34b77c2017-02-28 19:03:11 +020017 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030018 <groupId>org.openecomp.sdc</groupId>
19 <artifactId>common-app-api</artifactId>
20 <version>${project.version}</version>
Michael Landoc34b77c2017-02-28 19:03:11 +020021 <scope>provided</scope>
22 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +030023
Michael Lando0de99c22017-02-28 10:54:57 +020024 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030025 <groupId>org.openecomp.sdc.be</groupId>
26 <artifactId>common-be</artifactId>
27 <version>${project.version}</version>
Michael Lando0de99c22017-02-28 10:54:57 +020028 <scope>provided</scope>
29 </dependency>
30
Michael Lando2e0ef972017-02-28 01:44:21 +020031 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030032 <groupId>ch.qos.logback</groupId>
33 <artifactId>logback-classic</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030034 <version>${logback.version}</version>
Michael Lando2e0ef972017-02-28 01:44:21 +020035 <scope>provided</scope>
36 </dependency>
Satyaki Mallick3864c212018-09-19 18:51:35 +053037 <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>
Michael Lando2e0ef972017-02-28 01:44:21 +020043
44 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030045 <groupId>ch.qos.logback</groupId>
46 <artifactId>logback-core</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030047 <version>${logback.version}</version>
Michael Landoed64b5e2017-06-09 03:19:04 +030048 <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>
Michael Lando2e0ef972017-02-28 01:44:21 +020056 <scope>provided</scope>
57 </dependency>
58
Michael Landoc0ac0152017-02-27 23:48:43 +020059 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030060 <groupId>com.google.guava</groupId>
61 <artifactId>guava</artifactId>
62 <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
Michael Landoc0ac0152017-02-27 23:48:43 +020063 <scope>provided</scope>
64 </dependency>
65
66 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030067 <groupId>org.functionaljava</groupId>
68 <artifactId>functionaljava</artifactId>
69 <version>${functionaljava.version}</version>
70 <scope>provided</scope>
71 </dependency>
72
73 <!-- spring -->
Tomasz Golabekc8fcbbc2019-07-09 08:42:59 +020074
75 <dependency>
76 <groupId>org.springframework</groupId>
77 <artifactId>spring-core</artifactId>
78 <version>${spring.version}</version>
79 <scope>provided</scope>
80 </dependency>
81
Michael Landoed64b5e2017-06-09 03:19:04 +030082 <dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020083 <groupId>org.springframework</groupId>
84 <artifactId>spring-beans</artifactId>
85 <version>${spring.version}</version>
86 <scope>provided</scope>
87 </dependency>
88
89 <dependency>
90 <groupId>org.springframework</groupId>
91 <artifactId>spring-context</artifactId>
92 <version>${spring.version}</version>
93 <scope>provided</scope>
94 </dependency>
95
96 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030097 <groupId>javax.validation</groupId>
98 <artifactId>validation-api</artifactId>
99 <version>1.1.0.Final</version>
Michael Landoc0ac0152017-02-27 23:48:43 +0200100 </dependency>
101
102 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300103 <groupId>org.hibernate</groupId>
104 <artifactId>hibernate-validator</artifactId>
Tal Gitelman01813432018-09-16 17:11:45 +0300105 <version>5.3.6.Final</version>
Michael Landoc0ac0152017-02-27 23:48:43 +0200106 </dependency>
107
Michael Landoed64b5e2017-06-09 03:19:04 +0300108 <!-- Gson -->
Michael Landoc0ac0152017-02-27 23:48:43 +0200109 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200110 <groupId>com.google.code.gson</groupId>
111 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300112 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200113 <scope>provided</scope>
114 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300115
Michael Lando451a3402017-02-19 10:28:42 +0200116 <dependency>
shrikantawachar2623c842019-05-20 12:11:54 +0530117 <groupId>org.janusgraph</groupId>
118 <artifactId>janusgraph-core</artifactId>
119 <version>${janusgraph.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200120 <scope>provided</scope>
121 <exclusions>
122 <exclusion>
123 <groupId>org.json</groupId>
124 <artifactId>json</artifactId>
125 </exclusion>
126 <exclusion>
127 <artifactId>slf4j-log4j12</artifactId>
128 <groupId>org.slf4j</groupId>
129 </exclusion>
Tal Gitelman76783962018-09-06 18:16:24 +0300130 <exclusion>
131 <artifactId>commons-collections</artifactId>
132 <groupId>commons-collections</groupId>
133 </exclusion>
Tal Gitelmana3b79a22018-09-25 17:22:34 +0300134 <exclusion>
135 <artifactId>groovy</artifactId>
136 <groupId>org.codehaus.groovy</groupId>
137 </exclusion>
Piotr Darosza67f45c2019-06-13 12:56:13 +0200138 <exclusion>
139 <groupId>org.apache.thrift</groupId>
140 <artifactId>libthrift</artifactId>
141 </exclusion>
Michael Lando451a3402017-02-19 10:28:42 +0200142 </exclusions>
143 </dependency>
144
145 <dependency>
shrikantawachar2623c842019-05-20 12:11:54 +0530146 <groupId>org.janusgraph</groupId>
147 <artifactId>janusgraph-cassandra</artifactId>
148 <version>${janusgraph.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200149 <scope>provided</scope>
150 <exclusions>
151 <exclusion>
152 <artifactId>slf4j-log4j12</artifactId>
153 <groupId>org.slf4j</groupId>
154 </exclusion>
155 </exclusions>
156 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300157
158 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200159 <groupId>org.apache.commons</groupId>
160 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200161 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200162 <scope>provided</scope>
163 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300164
165 <!-- http client -->
Michael Lando451a3402017-02-19 10:28:42 +0200166 <dependency>
167 <groupId>org.apache.httpcomponents</groupId>
168 <artifactId>httpclient</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300169 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200170 <scope>provided</scope>
171 </dependency>
172
173 <dependency>
174 <groupId>org.apache.httpcomponents</groupId>
175 <artifactId>httpcore</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300176 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200177 <scope>provided</scope>
178 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300179
Michael Lando451a3402017-02-19 10:28:42 +0200180 <!-- CASSANDRA -->
181 <dependency>
182 <groupId>com.datastax.cassandra</groupId>
183 <artifactId>cassandra-driver-core</artifactId>
184 <version>${cassandra.driver.version}</version>
185 <scope>provided</scope>
186 </dependency>
187 <dependency>
188 <groupId>com.datastax.cassandra</groupId>
189 <artifactId>cassandra-driver-mapping</artifactId>
190 <version>${cassandra.driver.version}</version>
191 <scope>provided</scope>
192 </dependency>
Piotr Darosza67f45c2019-06-13 12:56:13 +0200193 <dependency>
194 <groupId>org.apache.thrift</groupId>
195 <artifactId>libthrift</artifactId>
196 <version>${libthrift.version}</version>
197 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200198 <!-- CASSANDRA END -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300199
Michael Lando451a3402017-02-19 10:28:42 +0200200 <dependency>
201 <groupId>junit</groupId>
202 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300203 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200204 <scope>test</scope>
205 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200206
207 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300208 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200209 <artifactId>mockito-core</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200210 <scope>test</scope>
211 </dependency>
Tal Gitelmane849acf2018-06-06 13:56:56 +0300212
213 <dependency>
214 <groupId>org.jmockit</groupId>
215 <artifactId>jmockit</artifactId>
216 <scope>test</scope>
217 </dependency>
218
Michael Landoa5445102018-03-04 14:53:33 +0200219 <dependency>
220 <groupId>org.assertj</groupId>
221 <artifactId>assertj-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300222 <scope>test</scope>
223 </dependency>
224
Michael Lando451a3402017-02-19 10:28:42 +0200225 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300226 <groupId>org.springframework</groupId>
227 <artifactId>spring-test</artifactId>
228 <version>${spring.version}</version>
229 <scope>test</scope>
230 </dependency>
231
232 <dependency>
233 <groupId>org.aspectj</groupId>
234 <artifactId>aspectjrt</artifactId>
235 <version>${aspectj.version}</version>
236 <scope>test</scope>
237 </dependency>
238
239 <dependency>
240 <groupId>org.aspectj</groupId>
241 <artifactId>aspectjweaver</artifactId>
242 <version>${aspectj.version}</version>
243 <scope>test</scope>
244 </dependency>
245
Michael Lando451a3402017-02-19 10:28:42 +0200246 <dependency>
247 <groupId>org.springframework</groupId>
248 <artifactId>spring-web</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200249 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200250 <scope>test</scope>
251 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300252
Michael Lando451a3402017-02-19 10:28:42 +0200253 <dependency>
254 <groupId>org.springframework</groupId>
255 <artifactId>spring-tx</artifactId>
256 <scope>test</scope>
257 <version>4.0.7.RELEASE</version>
258 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300259
Michael Lando451a3402017-02-19 10:28:42 +0200260 <dependency>
261 <groupId>org.apache.commons</groupId>
262 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300263 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200264 <scope>test</scope>
265 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300266 <dependency>
267 <groupId>org.powermock</groupId>
268 <artifactId>powermock-module-junit4</artifactId>
269 <version>1.7.0RC4</version>
270 <scope>test</scope>
271 </dependency>
Michael Lando75aacbb2017-07-17 21:12:03 +0300272 <dependency>
273 <groupId>org.powermock</groupId>
274 <artifactId>powermock-api-mockito-common</artifactId>
275 <version>1.6.5</version>
276 <scope>test</scope>
277 </dependency>
Tal Gitelmane0199372018-09-18 11:57:53 +0300278
279 <dependency>
280 <groupId>org.codehaus.groovy</groupId>
281 <artifactId>groovy</artifactId>
Tal Gitelmane0199372018-09-18 11:57:53 +0300282 </dependency>
283
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300284 <dependency>
285 <groupId>io.netty</groupId>
286 <artifactId>netty-all</artifactId>
287 </dependency>
Talio09537852019-01-31 18:00:36 +0200288 <dependency>
289 <groupId>org.apache.commons</groupId>
290 <artifactId>commons-collections4</artifactId>
291 <version>${commons.collections.version}</version>
292 </dependency>
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300293
294 <dependency>
295 <groupId>io.netty</groupId>
296 <artifactId>netty-handler</artifactId>
297 </dependency>
Talio09537852019-01-31 18:00:36 +0200298 <dependency>
taliofe4afd42019-04-14 15:37:20 +0300299 <groupId>org.projectlombok</groupId>
300 <artifactId>lombok</artifactId>
301 <version>${lombok.version}</version>
302 </dependency>
303 <dependency>
304 <groupId>joda-time</groupId>
305 <artifactId>joda-time</artifactId>
306 <version>${joda.time.version}</version>
Talio09537852019-01-31 18:00:36 +0200307 </dependency>
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300308
taliofe4afd42019-04-14 15:37:20 +0300309 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200310 <build>
311 <plugins>
312 <plugin>
313 <groupId>org.apache.maven.plugins</groupId>
314 <artifactId>maven-deploy-plugin</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200315 <configuration>
316 <skip>true</skip>
317 </configuration>
318 </plugin>
dekstroza37843cb2018-05-18 14:42:24 +0100319 <plugin>
320 <groupId>com.github.sylvainlaurent.maven</groupId>
321 <artifactId>yaml-json-validator-maven-plugin</artifactId>
322 <executions>
323 <execution>
324 <id>validate</id>
325 <phase>validate</phase>
326 <goals>
327 <goal>validate</goal>
328 </goals>
329 <configuration>
330 <validationSets>
331 <validationSet>
332 <includes>
333 <include>src/main/resources/**/*.y*ml</include>
334 <include>src/test/resources/**/*.y*ml</include>
335 </includes>
336 </validationSet>
337 <validationSet>
338 <includes>
339 <include>src/main/resources/**/*.json</include>
340 <include>src/test/resources/**/*.json</include>
341 </includes>
342 </validationSet>
343 </validationSets>
344 </configuration>
345 </execution>
346 </executions>
347 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200348 </plugins>
349 </build>
Michael Lando5b593492018-07-29 16:13:45 +0300350</project>