blob: 579d2315905ad6b62625651e6ed1e0781de299de [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 -->
74 <dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020075 <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>
Michael Landoed64b5e2017-06-09 03:19:04 +030089 <groupId>javax.validation</groupId>
90 <artifactId>validation-api</artifactId>
91 <version>1.1.0.Final</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020092 </dependency>
93
94 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030095 <groupId>org.hibernate</groupId>
96 <artifactId>hibernate-validator</artifactId>
Tal Gitelman01813432018-09-16 17:11:45 +030097 <version>5.3.6.Final</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020098 </dependency>
99
Michael Landoed64b5e2017-06-09 03:19:04 +0300100 <!-- Gson -->
Michael Landoc0ac0152017-02-27 23:48:43 +0200101 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200102 <groupId>com.google.code.gson</groupId>
103 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300104 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200105 <scope>provided</scope>
106 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300107
Michael Lando451a3402017-02-19 10:28:42 +0200108 <dependency>
shrikantawachar2623c842019-05-20 12:11:54 +0530109 <groupId>org.janusgraph</groupId>
110 <artifactId>janusgraph-core</artifactId>
111 <version>${janusgraph.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200112 <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>
Tal Gitelman76783962018-09-06 18:16:24 +0300122 <exclusion>
123 <artifactId>commons-collections</artifactId>
124 <groupId>commons-collections</groupId>
125 </exclusion>
Tal Gitelmana3b79a22018-09-25 17:22:34 +0300126 <exclusion>
127 <artifactId>groovy</artifactId>
128 <groupId>org.codehaus.groovy</groupId>
129 </exclusion>
Piotr Darosza67f45c2019-06-13 12:56:13 +0200130 <exclusion>
131 <groupId>org.apache.thrift</groupId>
132 <artifactId>libthrift</artifactId>
133 </exclusion>
Michael Lando451a3402017-02-19 10:28:42 +0200134 </exclusions>
135 </dependency>
136
137 <dependency>
shrikantawachar2623c842019-05-20 12:11:54 +0530138 <groupId>org.janusgraph</groupId>
139 <artifactId>janusgraph-cassandra</artifactId>
140 <version>${janusgraph.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200141 <scope>provided</scope>
142 <exclusions>
143 <exclusion>
144 <artifactId>slf4j-log4j12</artifactId>
145 <groupId>org.slf4j</groupId>
146 </exclusion>
147 </exclusions>
148 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300149
150 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200151 <groupId>org.apache.commons</groupId>
152 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200153 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200154 <scope>provided</scope>
155 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300156
157 <!-- http client -->
Michael Lando451a3402017-02-19 10:28:42 +0200158 <dependency>
159 <groupId>org.apache.httpcomponents</groupId>
160 <artifactId>httpclient</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300161 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200162 <scope>provided</scope>
163 </dependency>
164
165 <dependency>
166 <groupId>org.apache.httpcomponents</groupId>
167 <artifactId>httpcore</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300168 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200169 <scope>provided</scope>
170 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300171
Michael Lando451a3402017-02-19 10:28:42 +0200172 <!-- 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>
Piotr Darosza67f45c2019-06-13 12:56:13 +0200185 <dependency>
186 <groupId>org.apache.thrift</groupId>
187 <artifactId>libthrift</artifactId>
188 <version>${libthrift.version}</version>
189 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200190 <!-- CASSANDRA END -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300191
Michael Lando451a3402017-02-19 10:28:42 +0200192 <dependency>
193 <groupId>junit</groupId>
194 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300195 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200196 <scope>test</scope>
197 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200198
199 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300200 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200201 <artifactId>mockito-core</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200202 <scope>test</scope>
203 </dependency>
Tal Gitelmane849acf2018-06-06 13:56:56 +0300204
205 <dependency>
206 <groupId>org.jmockit</groupId>
207 <artifactId>jmockit</artifactId>
208 <scope>test</scope>
209 </dependency>
210
Michael Landoa5445102018-03-04 14:53:33 +0200211 <dependency>
212 <groupId>org.assertj</groupId>
213 <artifactId>assertj-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300214 <scope>test</scope>
215 </dependency>
216
Michael Lando451a3402017-02-19 10:28:42 +0200217 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300218 <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
Michael Lando451a3402017-02-19 10:28:42 +0200238 <dependency>
239 <groupId>org.springframework</groupId>
240 <artifactId>spring-web</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200241 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200242 <scope>test</scope>
243 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300244
Michael Lando451a3402017-02-19 10:28:42 +0200245 <dependency>
246 <groupId>org.springframework</groupId>
247 <artifactId>spring-tx</artifactId>
248 <scope>test</scope>
249 <version>4.0.7.RELEASE</version>
250 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300251
Michael Lando451a3402017-02-19 10:28:42 +0200252 <dependency>
253 <groupId>org.apache.commons</groupId>
254 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300255 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200256 <scope>test</scope>
257 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300258 <dependency>
259 <groupId>org.powermock</groupId>
260 <artifactId>powermock-module-junit4</artifactId>
261 <version>1.7.0RC4</version>
262 <scope>test</scope>
263 </dependency>
Michael Lando75aacbb2017-07-17 21:12:03 +0300264 <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>
Tal Gitelmane0199372018-09-18 11:57:53 +0300270
271 <dependency>
272 <groupId>org.codehaus.groovy</groupId>
273 <artifactId>groovy</artifactId>
Tal Gitelmane0199372018-09-18 11:57:53 +0300274 </dependency>
275
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300276 <dependency>
277 <groupId>io.netty</groupId>
278 <artifactId>netty-all</artifactId>
279 </dependency>
Talio09537852019-01-31 18:00:36 +0200280 <dependency>
281 <groupId>org.apache.commons</groupId>
282 <artifactId>commons-collections4</artifactId>
283 <version>${commons.collections.version}</version>
284 </dependency>
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300285
286 <dependency>
287 <groupId>io.netty</groupId>
288 <artifactId>netty-handler</artifactId>
289 </dependency>
Talio09537852019-01-31 18:00:36 +0200290 <dependency>
taliofe4afd42019-04-14 15:37:20 +0300291 <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>
Talio09537852019-01-31 18:00:36 +0200299 </dependency>
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300300
taliofe4afd42019-04-14 15:37:20 +0300301 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200302 <build>
303 <plugins>
304 <plugin>
305 <groupId>org.apache.maven.plugins</groupId>
306 <artifactId>maven-deploy-plugin</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200307 <configuration>
308 <skip>true</skip>
309 </configuration>
310 </plugin>
dekstroza37843cb2018-05-18 14:42:24 +0100311 <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>
Michael Lando451a3402017-02-19 10:28:42 +0200340 </plugins>
341 </build>
Michael Lando5b593492018-07-29 16:13:45 +0300342</project>