blob: 06b65915be397955a71cba921ed3fb011023cf4a [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>
Michael Landob5fc68f2018-11-15 13:36:12 +020012 <version>1.4.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
108 <!-- TITAN -->
Michael Lando451a3402017-02-19 10:28:42 +0200109 <dependency>
110 <groupId>com.thinkaurelius.titan</groupId>
111 <artifactId>titan-core</artifactId>
112 <version>${titan.version}</version>
113 <scope>provided</scope>
114 <exclusions>
115 <exclusion>
116 <groupId>org.json</groupId>
117 <artifactId>json</artifactId>
118 </exclusion>
119 <exclusion>
120 <artifactId>slf4j-log4j12</artifactId>
121 <groupId>org.slf4j</groupId>
122 </exclusion>
Tal Gitelman76783962018-09-06 18:16:24 +0300123 <exclusion>
124 <artifactId>commons-collections</artifactId>
125 <groupId>commons-collections</groupId>
126 </exclusion>
Tal Gitelmana3b79a22018-09-25 17:22:34 +0300127 <exclusion>
128 <artifactId>groovy</artifactId>
129 <groupId>org.codehaus.groovy</groupId>
130 </exclusion>
Michael Lando451a3402017-02-19 10:28:42 +0200131 </exclusions>
132 </dependency>
133
134 <dependency>
Michael Landode67b612018-03-15 16:53:05 +0200135 <groupId>org.onap.sdc.sdc-titan-cassandra</groupId>
Michael Lando5b593492018-07-29 16:13:45 +0300136 <artifactId>sdc-titan-cassandra</artifactId>
Michael Landode67b612018-03-15 16:53:05 +0200137 <version>${sdc.titan.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200138 <scope>provided</scope>
139 <exclusions>
140 <exclusion>
141 <artifactId>slf4j-log4j12</artifactId>
142 <groupId>org.slf4j</groupId>
143 </exclusion>
144 </exclusions>
145 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300146 <!-- TITAN END -->
147
148 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200149 <groupId>org.apache.commons</groupId>
150 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200151 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200152 <scope>provided</scope>
153 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300154
155 <!-- http client -->
Michael Lando451a3402017-02-19 10:28:42 +0200156 <dependency>
157 <groupId>org.apache.httpcomponents</groupId>
158 <artifactId>httpclient</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300159 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200160 <scope>provided</scope>
161 </dependency>
162
163 <dependency>
164 <groupId>org.apache.httpcomponents</groupId>
165 <artifactId>httpcore</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300166 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200167 <scope>provided</scope>
168 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300169
Michael Lando451a3402017-02-19 10:28:42 +0200170 <!-- CASSANDRA -->
171 <dependency>
172 <groupId>com.datastax.cassandra</groupId>
173 <artifactId>cassandra-driver-core</artifactId>
174 <version>${cassandra.driver.version}</version>
175 <scope>provided</scope>
176 </dependency>
177 <dependency>
178 <groupId>com.datastax.cassandra</groupId>
179 <artifactId>cassandra-driver-mapping</artifactId>
180 <version>${cassandra.driver.version}</version>
181 <scope>provided</scope>
182 </dependency>
183 <!-- CASSANDRA END -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300184
Michael Lando451a3402017-02-19 10:28:42 +0200185 <dependency>
186 <groupId>junit</groupId>
187 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300188 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200189 <scope>test</scope>
190 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200191
192 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300193 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200194 <artifactId>mockito-core</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200195 <scope>test</scope>
196 </dependency>
Tal Gitelmane849acf2018-06-06 13:56:56 +0300197
198 <dependency>
199 <groupId>org.jmockit</groupId>
200 <artifactId>jmockit</artifactId>
201 <scope>test</scope>
202 </dependency>
203
Michael Landoa5445102018-03-04 14:53:33 +0200204 <dependency>
205 <groupId>org.assertj</groupId>
206 <artifactId>assertj-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300207 <scope>test</scope>
208 </dependency>
209
Michael Lando451a3402017-02-19 10:28:42 +0200210 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300211 <groupId>org.springframework</groupId>
212 <artifactId>spring-test</artifactId>
213 <version>${spring.version}</version>
214 <scope>test</scope>
215 </dependency>
216
217 <dependency>
218 <groupId>org.aspectj</groupId>
219 <artifactId>aspectjrt</artifactId>
220 <version>${aspectj.version}</version>
221 <scope>test</scope>
222 </dependency>
223
224 <dependency>
225 <groupId>org.aspectj</groupId>
226 <artifactId>aspectjweaver</artifactId>
227 <version>${aspectj.version}</version>
228 <scope>test</scope>
229 </dependency>
230
Michael Lando451a3402017-02-19 10:28:42 +0200231 <dependency>
232 <groupId>org.springframework</groupId>
233 <artifactId>spring-web</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200234 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200235 <scope>test</scope>
236 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300237
Michael Lando451a3402017-02-19 10:28:42 +0200238 <dependency>
239 <groupId>org.springframework</groupId>
240 <artifactId>spring-tx</artifactId>
241 <scope>test</scope>
242 <version>4.0.7.RELEASE</version>
243 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300244
Michael Lando451a3402017-02-19 10:28:42 +0200245 <dependency>
246 <groupId>org.apache.commons</groupId>
247 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300248 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200249 <scope>test</scope>
250 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300251 <dependency>
252 <groupId>org.powermock</groupId>
253 <artifactId>powermock-module-junit4</artifactId>
254 <version>1.7.0RC4</version>
255 <scope>test</scope>
256 </dependency>
Michael Lando75aacbb2017-07-17 21:12:03 +0300257 <dependency>
258 <groupId>org.powermock</groupId>
259 <artifactId>powermock-api-mockito-common</artifactId>
260 <version>1.6.5</version>
261 <scope>test</scope>
262 </dependency>
Tal Gitelmane0199372018-09-18 11:57:53 +0300263
264 <dependency>
265 <groupId>org.codehaus.groovy</groupId>
266 <artifactId>groovy</artifactId>
Tal Gitelmane0199372018-09-18 11:57:53 +0300267 </dependency>
268
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300269 <dependency>
270 <groupId>io.netty</groupId>
271 <artifactId>netty-all</artifactId>
272 </dependency>
Talio09537852019-01-31 18:00:36 +0200273 <dependency>
274 <groupId>org.apache.commons</groupId>
275 <artifactId>commons-collections4</artifactId>
276 <version>${commons.collections.version}</version>
277 </dependency>
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300278
279 <dependency>
280 <groupId>io.netty</groupId>
281 <artifactId>netty-handler</artifactId>
282 </dependency>
Talio09537852019-01-31 18:00:36 +0200283 <dependency>
taliofe4afd42019-04-14 15:37:20 +0300284 <groupId>org.projectlombok</groupId>
285 <artifactId>lombok</artifactId>
286 <version>${lombok.version}</version>
287 </dependency>
288 <dependency>
289 <groupId>joda-time</groupId>
290 <artifactId>joda-time</artifactId>
291 <version>${joda.time.version}</version>
Talio09537852019-01-31 18:00:36 +0200292 </dependency>
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300293
taliofe4afd42019-04-14 15:37:20 +0300294 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200295 <build>
296 <plugins>
297 <plugin>
298 <groupId>org.apache.maven.plugins</groupId>
299 <artifactId>maven-deploy-plugin</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200300 <configuration>
301 <skip>true</skip>
302 </configuration>
303 </plugin>
dekstroza37843cb2018-05-18 14:42:24 +0100304 <plugin>
305 <groupId>com.github.sylvainlaurent.maven</groupId>
306 <artifactId>yaml-json-validator-maven-plugin</artifactId>
307 <executions>
308 <execution>
309 <id>validate</id>
310 <phase>validate</phase>
311 <goals>
312 <goal>validate</goal>
313 </goals>
314 <configuration>
315 <validationSets>
316 <validationSet>
317 <includes>
318 <include>src/main/resources/**/*.y*ml</include>
319 <include>src/test/resources/**/*.y*ml</include>
320 </includes>
321 </validationSet>
322 <validationSet>
323 <includes>
324 <include>src/main/resources/**/*.json</include>
325 <include>src/test/resources/**/*.json</include>
326 </includes>
327 </validationSet>
328 </validationSets>
329 </configuration>
330 </execution>
331 </executions>
332 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200333 </plugins>
334 </build>
Michael Lando5b593492018-07-29 16:13:45 +0300335</project>