blob: 58caad21d0630c3b764c9a7bd0e445e4cdf547c2 [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"
Yuli Shlosbergaf70a202018-09-25 17:16:48 +03002 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Yuli Shlosberg958c32d2018-02-15 12:04:46 +02003 <modelVersion>4.0.0</modelVersion>
Michael Lando451a3402017-02-19 10:28:42 +02004
Yuli Shlosberg958c32d2018-02-15 12:04:46 +02005 <artifactId>catalog-be</artifactId>
6 <packaging>war</packaging>
Michael Lando451a3402017-02-19 10:28:42 +02007
Yuli Shlosberg958c32d2018-02-15 12:04:46 +02008 <parent>
9 <groupId>org.openecomp.sdc</groupId>
10 <artifactId>sdc-main</artifactId>
Michael Landob5fc68f2018-11-15 13:36:12 +020011 <version>1.4.0-SNAPSHOT</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020012 </parent>
Michael Lando451a3402017-02-19 10:28:42 +020013
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020014 <properties>
Tomasz Golabek7e28cea2019-04-11 14:29:49 +020015 <java-hamcrest.version>2.0.0.0</java-hamcrest.version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020016 </properties>
Michael Lando451a3402017-02-19 10:28:42 +020017
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020018 <dependencies>
19 <!--JSON and YAML Parsing-->
20 <dependency>
21 <groupId>com.fasterxml.jackson.dataformat</groupId>
22 <artifactId>jackson-dataformat-yaml</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030023 <version>${jackson.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020024 <scope>compile</scope>
25 </dependency>
Michael Landoc34b77c2017-02-28 19:03:11 +020026
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020027 <dependency>
28 <groupId>com.fasterxml.jackson.core</groupId>
29 <artifactId>jackson-databind</artifactId>
30 <version>${jackson.version}</version>
31 <scope>compile</scope>
32 </dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020033
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020034 <dependency>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020035 <groupId>org.openecomp.sdc</groupId>
36 <artifactId>security-utils</artifactId>
37 <version>${project.version}</version>
38 <scope>compile</scope>
39 </dependency>
shrek20001dd5db92019-02-07 12:57:08 +020040 <dependency>
41 <groupId>org.onap.sdc.common</groupId>
42 <artifactId>onap-tosca-datatype</artifactId>
43 <version>${project.version}</version>
44 <scope>compile</scope>
45 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020046
Tomasz Golabek06e8b702019-03-26 16:36:22 +010047 <dependency>
48 <groupId>org.onap.sdc.common</groupId>
49 <artifactId>onap-generic-artifact-browser-service</artifactId>
50 <version>${project.version}</version>
51 <scope>compile</scope>
52 </dependency>
53
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020054 <!-- Swagger Dependencies Start -->
55 <dependency>
56 <groupId>io.swagger</groupId>
57 <artifactId>swagger-jersey2-jaxrs</artifactId>
58 <scope>compile</scope>
Michael Landocb1b7da2018-05-22 20:43:41 +030059 <version>1.5.15</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020060 </dependency>
61 <!-- Swagger Dependencies End -->
Tal Gitelmaned7e1c32017-06-29 19:30:00 +030062
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020063 <dependency>
64 <groupId>org.openecomp.sdc</groupId>
65 <artifactId>common-app-api</artifactId>
66 <version>${project.version}</version>
67 <scope>compile</scope>
68 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020069
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020070 <dependency>
71 <groupId>org.openecomp.sdc.be</groupId>
72 <artifactId>common-be</artifactId>
73 <version>${project.version}</version>
74 <scope>compile</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.openecomp.sdc.be</groupId>
78 <artifactId>catalog-dao</artifactId>
79 <version>${project.version}</version>
80 <scope>compile</scope>
81 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020082
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020083 <dependency>
84 <groupId>org.openecomp.sdc.be</groupId>
85 <artifactId>catalog-model</artifactId>
86 <version>${project.version}</version>
87 <scope>compile</scope>
88 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020089
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020090 <dependency>
91 <groupId>ch.qos.logback</groupId>
92 <artifactId>logback-classic</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030093 <version>${logback.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020094 <scope>compile</scope>
95 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020096
Yuli Shlosberg958c32d2018-02-15 12:04:46 +020097 <!-- Snake Yaml -->
98 <dependency>
99 <groupId>org.yaml</groupId>
100 <artifactId>snakeyaml</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300101 <version>${snakeyaml.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200102 <scope>compile</scope>
103 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200104
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200105 <!-- File changes listener -->
106 <dependency>
107 <groupId>org.apache.commons</groupId>
108 <artifactId>commons-jci-core</artifactId>
109 <version>${commons-jci-core.version}</version>
110 <scope>compile</scope>
111 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200112
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200113 <!-- Gson -->
114 <dependency>
115 <groupId>com.google.code.gson</groupId>
116 <artifactId>gson</artifactId>
117 <version>${gson.version}</version>
118 <scope>compile</scope>
119 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200120
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200121 <!-- jersey -->
122 <dependency>
123 <groupId>org.glassfish.jersey.media</groupId>
124 <artifactId>jersey-media-json-jackson</artifactId>
125 <version>${jersey-bom.version}</version>
126 <scope>compile</scope>
127 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200128
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200129 <dependency>
130 <groupId>org.glassfish.jersey.containers</groupId>
131 <artifactId>jersey-container-servlet-core</artifactId>
132 <version>${jersey-bom.version}</version>
133 <scope>compile</scope>
134 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200135
Michael Lando5b593492018-07-29 16:13:45 +0300136 <dependency>
137 <groupId>org.glassfish.jersey.media</groupId>
138 <artifactId>jersey-media-multipart</artifactId>
139 <version>${jersey-bom.version}</version>
140 <scope>compile</scope>
141 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300142 <dependency>
143 <groupId>org.glassfish.jersey.ext</groupId>
144 <artifactId>jersey-spring4</artifactId>
145 <version>${jersey-bom.version}</version>
146 <exclusions>
147 <exclusion>
148 <groupId>org.springframework</groupId>
149 <artifactId>spring-web</artifactId>
150 </exclusion>
151 <exclusion>
152 <groupId>org.springframework</groupId>
153 <artifactId>spring-beans</artifactId>
154 </exclusion>
155 <exclusion>
156 <groupId>org.springframework</groupId>
157 <artifactId>spring-core</artifactId>
158 </exclusion>
159 <exclusion>
160 <groupId>org.springframework</groupId>
161 <artifactId>spring-aop</artifactId>
162 </exclusion>
163 <!-- Transitive dependency of spring-bridge -->
164 <exclusion>
165 <groupId>org.springframework</groupId>
166 <artifactId>spring-context</artifactId>
167 </exclusion>
168 </exclusions>
Michael Landoa5445102018-03-04 14:53:33 +0200169
Michael Lando5b593492018-07-29 16:13:45 +0300170 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200171
Michael Lando5b593492018-07-29 16:13:45 +0300172 <!--asm-all-repackaged is a jersey dependency. in current version jersey depends on a version that was compiled using java 9 compiler
173 currently our jetty (v9.3.6) does not support java 9. as soon as jetty gets upgraded we will remove this dependency-->
174 <dependency>
175 <groupId>org.glassfish.hk2.external</groupId>
176 <artifactId>asm-all-repackaged</artifactId>
177 </dependency>
178
179 <dependency>
180 <groupId>org.glassfish.jersey.ext</groupId>
181 <artifactId>jersey-bean-validation</artifactId>
182 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200183
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200184 <!-- http client -->
185 <dependency>
186 <groupId>org.apache.httpcomponents</groupId>
187 <artifactId>httpclient</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300188 <version>${httpclient.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200189 <scope>compile</scope>
190 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200191
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200192 <dependency>
193 <groupId>org.apache.httpcomponents</groupId>
194 <artifactId>httpcore</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300195 <version>${httpcore.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200196 <scope>compile</scope>
197 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200198
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200199 <dependency>
200 <groupId>commons-logging</groupId>
201 <artifactId>commons-logging</artifactId>
202 <version>${commons-logging}</version>
203 <scope>compile</scope>
204 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200205
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200206 <dependency>
207 <groupId>commons-codec</groupId>
208 <artifactId>commons-codec</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300209 <version>${commons-codec}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200210 <scope>compile</scope>
211 </dependency>
212 <!-- http client END -->
Michael Lando451a3402017-02-19 10:28:42 +0200213
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200214 <dependency>
215 <groupId>javax.servlet</groupId>
vempod6d12912018-07-09 14:27:57 +0300216 <artifactId>javax.servlet-api</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300217 <version>${servlet-api.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200218 <scope>provided</scope>
219 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200220
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200221 <dependency>
222 <groupId>org.eclipse.jgit</groupId>
223 <artifactId>org.eclipse.jgit</artifactId>
224 <version>3.4.1.201406201815-r</version>
225 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200226
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200227 <!-- spring - used by A4C -->
228 <dependency>
229 <groupId>org.springframework</groupId>
230 <artifactId>spring-core</artifactId>
231 <version>${spring.version}</version>
232 <scope>compile</scope>
233 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200234
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200235 <dependency>
236 <groupId>org.springframework</groupId>
237 <artifactId>spring-context</artifactId>
238 <version>${spring.version}</version>
239 <scope>compile</scope>
240 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200241
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200242 <dependency>
243 <groupId>org.springframework</groupId>
244 <artifactId>spring-web</artifactId>
245 <version>${spring.version}</version>
246 <scope>compile</scope>
247 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200248
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200249 <dependency>
250 <groupId>org.springframework</groupId>
251 <artifactId>spring-webmvc</artifactId>
252 <version>${spring.version}</version>
253 <scope>compile</scope>
254 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200255
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200256 <dependency>
257 <groupId>org.springframework</groupId>
258 <artifactId>spring-aop</artifactId>
259 <version>${spring.version}</version>
260 <scope>compile</scope>
261 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200262
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200263 <dependency>
264 <groupId>org.springframework</groupId>
265 <artifactId>spring-beans</artifactId>
266 <version>${spring.version}</version>
267 <scope>compile</scope>
268 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200269
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200270 <dependency>
271 <groupId>org.springframework</groupId>
272 <artifactId>spring-expression</artifactId>
273 <version>${spring.version}</version>
274 <scope>compile</scope>
275 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200276
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200277 <dependency>
278 <groupId>org.codehaus.groovy</groupId>
Tal Gitelmana3b79a22018-09-25 17:22:34 +0300279 <artifactId>groovy</artifactId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200280 <scope>compile</scope>
281 </dependency>
Michael Landoc34b77c2017-02-28 19:03:11 +0200282
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200283 <dependency>
284 <groupId>org.codehaus.janino</groupId>
285 <artifactId>janino</artifactId>
286 <version>${janino.version}</version>
287 <scope>compile</scope>
288 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200289
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200290 <dependency>
291 <groupId>org.codehaus.janino</groupId>
292 <artifactId>commons-compiler</artifactId>
293 <version>${janino.version}</version>
294 <scope>compile</scope>
295 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200296
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200297 <dependency>
298 <groupId>com.google.guava</groupId>
299 <artifactId>guava</artifactId>
300 <version>${guava.version}</version>
301 <scope>compile</scope>
302 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200303
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200304 <!-- TITAN -->
305 <dependency>
306 <groupId>com.thinkaurelius.titan</groupId>
307 <artifactId>titan-core</artifactId>
308 <version>${titan.version}</version>
309 <scope>compile</scope>
310 <exclusions>
311 <exclusion>
312 <groupId>org.json</groupId>
313 <artifactId>json</artifactId>
314 </exclusion>
315 <exclusion>
316 <artifactId>slf4j-log4j12</artifactId>
317 <groupId>org.slf4j</groupId>
318 </exclusion>
Tal Gitelman76783962018-09-06 18:16:24 +0300319 <exclusion>
320 <artifactId>commons-collections</artifactId>
321 <groupId>commons-collections</groupId>
322 </exclusion>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200323 </exclusions>
324 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200325
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200326 <dependency>
Michael Landode67b612018-03-15 16:53:05 +0200327 <groupId>org.onap.sdc.sdc-titan-cassandra</groupId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200328 <artifactId>sdc-titan-cassandra</artifactId>
Michael Landode67b612018-03-15 16:53:05 +0200329 <version>${sdc.titan.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200330 <scope>compile</scope>
331 <exclusions>
332 <exclusion>
333 <groupId>org.slf4j</groupId>
334 <artifactId>slf4j-log4j12</artifactId>
335 </exclusion>
336 <exclusion>
337 <groupId>io.netty</groupId>
338 <artifactId>netty-all</artifactId>
339 </exclusion>
340 </exclusions>
341 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200342
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200343 <dependency>
344 <groupId>org.apache.commons</groupId>
345 <artifactId>commons-lang3</artifactId>
346 <version>${lang3.version}</version>
347 <scope>compile</scope>
348 </dependency>
349 <!-- TITAN END -->
Michael Lando451a3402017-02-19 10:28:42 +0200350
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200351 <dependency>
352 <groupId>com.googlecode.json-simple</groupId>
353 <artifactId>json-simple</artifactId>
354 <version>${json-simple.version}</version>
355 <scope>compile</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200356
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200357 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200358
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200359 <dependency>
360 <groupId>org.elasticsearch</groupId>
361 <artifactId>elasticsearch</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300362 <version>${elastic-search.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200363 <scope>compile</scope>
364 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200365
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200366 <!-- functional java -->
367 <dependency>
368 <groupId>org.functionaljava</groupId>
369 <artifactId>functionaljava</artifactId>
370 <version>${functionaljava.version}</version>
371 <scope>compile</scope>
372 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200373
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200374 <!-- Aspects -->
375 <dependency>
376 <groupId>com.jcabi</groupId>
377 <artifactId>jcabi-aspects</artifactId>
378 <version>${jcabi.version}</version>
379 <scope>compile</scope>
380 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200381
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200382 <dependency>
383 <groupId>org.aspectj</groupId>
384 <artifactId>aspectjrt</artifactId>
385 <version>${aspectjrt.version}</version>
386 <scope>compile</scope>
387 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200388
Michael Landoa5445102018-03-04 14:53:33 +0200389
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200390 <!-- CAMBRIA CLIENT for U-EB -->
391 <dependency>
392 <groupId>com.att.nsa</groupId>
393 <artifactId>cambriaClient</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200394 <version>1.2.1-oss</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200395 <scope>compile</scope>
396 <exclusions>
397 <exclusion>
Michael Lando5b593492018-07-29 16:13:45 +0300398 <groupId>com.att.nsa</groupId>
399 <artifactId>saClientLibrary</artifactId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200400 </exclusion>
401 </exclusions>
402 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200403
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200404 <dependency>
405 <groupId>org.json</groupId>
406 <artifactId>json</artifactId>
407 <version>20131018</version>
408 <scope>compile</scope>
409 </dependency>
410 <dependency>
411 <groupId>org.apache.tinkerpop</groupId>
412 <artifactId>tinkergraph-gremlin</artifactId>
413 <version>3.0.1-incubating</version>
414 <scope>compile</scope>
415 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200416
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200417 <dependency>
418 <groupId>org.apache.tinkerpop</groupId>
419 <artifactId>gremlin-groovy</artifactId>
420 <version>3.0.1-incubating</version>
421 <scope>compile</scope>
Tal Gitelman96dbee32018-10-10 16:39:59 +0300422 <exclusions>
423 <exclusion>
424 <artifactId>groovy</artifactId>
425 <groupId>org.codehaus.groovy</groupId>
426 </exclusion>
427 </exclusions>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200428 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200429
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200430 <!-- CASSANDRA -->
431 <dependency>
432 <groupId>com.datastax.cassandra</groupId>
433 <artifactId>cassandra-driver-core</artifactId>
434 <version>${cassandra.driver.version}</version>
435 <scope>compile</scope>
436 </dependency>
437 <dependency>
438 <groupId>com.datastax.cassandra</groupId>
439 <artifactId>cassandra-driver-mapping</artifactId>
440 <version>${cassandra.driver.version}</version>
441 <scope>compile</scope>
442 </dependency>
443 <!-- CASSANDRA END -->
Michael Lando451a3402017-02-19 10:28:42 +0200444
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200445 <!-- Inserted for ECOMP Portal Integration -->
446 <dependency>
Tal Gitelman7d05e162018-10-10 14:52:54 +0300447 <groupId>org.onap.portal.sdk</groupId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200448 <artifactId>epsdk-fw</artifactId>
449 <version>${ecomp.version}</version>
450 <scope>compile</scope>
451 <exclusions>
452 <exclusion>
453 <groupId>com.att.nsa</groupId>
454 <artifactId>cambriaClient</artifactId>
455 </exclusion>
456 <exclusion>
457 <artifactId>slf4j-log4j12</artifactId>
458 <groupId>org.slf4j</groupId>
459 </exclusion>
460 </exclusions>
461 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200462
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200463 <!--Jetty Proxy-->
464 <dependency>
465 <groupId>org.eclipse.jetty</groupId>
466 <artifactId>jetty-proxy</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300467 <version>${jetty.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200468 <scope>compile</scope>
469 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200470
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200471 <dependency>
472 <groupId>org.eclipse.jetty</groupId>
473 <artifactId>jetty-servlets</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300474 <version>${jetty.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200475 <scope>compile</scope>
476 </dependency>
477 <!-- System metrics -->
478 <dependency>
479 <groupId>org.fusesource</groupId>
480 <artifactId>sigar</artifactId>
481 <version>${sigar.version}</version>
482 <scope>compile</scope>
483 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300484 <dependency>
485 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
486 <artifactId>dmaapClient</artifactId>
487 <version>1.1.3</version>
488 <scope>compile</scope>
489 <exclusions>
490 <exclusion>
491 <groupId>com.att.aft</groupId>
492 <artifactId>dme2</artifactId>
493 </exclusion>
494 </exclusions>
495 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300496 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200497 <groupId>com.att.aft</groupId>
498 <artifactId>dme2</artifactId>
499 <version>3.1.200-oss</version>
500 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200501
Michael Lando5b593492018-07-29 16:13:45 +0300502 <dependency>
503 <groupId>javax.jms</groupId>
504 <artifactId>jms</artifactId>
505 <version>1.1</version>
506 <scope>provided</scope>
507 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200508
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200509 <!-- TEST -->
510 <dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300511 <groupId>org.assertj</groupId>
512 <artifactId>assertj-core</artifactId>
513 <scope>test</scope>
514 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200515
Michael Lando5b593492018-07-29 16:13:45 +0300516 <dependency>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200517 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
518 <artifactId>jersey-test-framework-provider-bundle</artifactId>
519 <version>${jersey-bom.version}</version>
520 <type>pom</type>
521 <scope>test</scope>
522 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200523
Michael Lando5b593492018-07-29 16:13:45 +0300524 <dependency>
525 <groupId>org.glassfish.jersey.core</groupId>
526 <artifactId>jersey-client</artifactId>
527 <version>${jersey-bom.version}</version>
Michael Lando5b593492018-07-29 16:13:45 +0300528 </dependency>
529
530 <dependency>
531 <groupId>com.github.tomakehurst</groupId>
532 <artifactId>wiremock-standalone</artifactId>
533 <scope>test</scope>
534 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200535
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200536 <dependency>
537 <groupId>org.eclipse.jetty</groupId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200538 <artifactId>jetty-webapp</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300539 <version>${jetty.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200540 <scope>test</scope>
541 </dependency>
542
543 <dependency>
544 <groupId>junit</groupId>
545 <artifactId>junit</artifactId>
546 <version>${junit.version}</version>
547 <scope>test</scope>
548 </dependency>
549
550 <dependency>
551 <groupId>org.mockito</groupId>
552 <artifactId>mockito-core</artifactId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200553 <scope>test</scope>
554 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200555
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200556 <dependency>
557 <groupId>org.springframework</groupId>
558 <artifactId>spring-test</artifactId>
559 <version>${spring.version}</version>
560 <scope>test</scope>
561 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200562
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200563 <dependency>
564 <groupId>org.springframework</groupId>
565 <artifactId>spring-tx</artifactId>
566 <version>${spring.version}</version>
Michael Lando5b593492018-07-29 16:13:45 +0300567 </dependency>
568
569 <dependency>
570 <groupId>io.cucumber</groupId>
571 <artifactId>cucumber-java</artifactId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200572 <scope>test</scope>
573 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200574
Michael Lando5b593492018-07-29 16:13:45 +0300575 <dependency>
576 <groupId>io.cucumber</groupId>
577 <artifactId>cucumber-junit</artifactId>
578 <scope>test</scope>
579 </dependency>
dekstroza37843cb2018-05-18 14:42:24 +0100580
581 <dependency>
582 <groupId>org.jmockit</groupId>
583 <artifactId>jmockit</artifactId>
584 <version>${jmockit.version}</version>
585 <scope>test</scope>
586 </dependency>
Tal Gitelman364c0f52018-06-13 14:51:53 +0300587
588 <dependency>
589 <groupId>com.google.code.bean-matchers</groupId>
590 <artifactId>bean-matchers</artifactId>
591 <version>0.11</version>
592 <scope>test</scope>
593 </dependency>
Tal Gitelmane0199372018-09-18 11:57:53 +0300594
595 <dependency>
Tomasz Golabek7e28cea2019-04-11 14:29:49 +0200596 <groupId>org.hamcrest</groupId>
597 <artifactId>java-hamcrest</artifactId>
598 <version>${java-hamcrest.version}</version>
599 <scope>test</scope>
600 </dependency>
601
602 <dependency>
Tal Gitelmane0199372018-09-18 11:57:53 +0300603 <groupId>org.codehaus.groovy</groupId>
604 <artifactId>groovy</artifactId>
605 <version>2.4.8</version>
606 </dependency>
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300607
608 <dependency>
609 <groupId>io.netty</groupId>
610 <artifactId>netty-handler</artifactId>
611 </dependency>
Talio09537852019-01-31 18:00:36 +0200612 <dependency>
613 <groupId>org.onap.sdc.common</groupId>
614 <artifactId>onap-tosca-datatype</artifactId>
615 <version>${project.version}</version>
616 </dependency>
617 <dependency>
618 <groupId>org.apache.commons</groupId>
619 <artifactId>commons-collections4</artifactId>
Talio1468fdc2019-02-05 11:05:05 +0200620 <version>${commons.collections.version}</version>
Talio09537852019-01-31 18:00:36 +0200621 </dependency>
taliofe4afd42019-04-14 15:37:20 +0300622 <dependency>
623 <groupId>org.codehaus.jackson</groupId>
624 <artifactId>jackson-mapper-asl</artifactId>
625 <version>${jackson.mapper.version}</version>
626 </dependency>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200627 </dependencies>
dekstroza37843cb2018-05-18 14:42:24 +0100628
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200629 <build>
Michael Lando451a3402017-02-19 10:28:42 +0200630
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200631 <finalName>${project.artifactId}-${project.version}</finalName>
Michael Lando451a3402017-02-19 10:28:42 +0200632
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200633 <plugins>
634 <plugin>
635 <groupId>org.apache.maven.plugins</groupId>
636 <artifactId>maven-war-plugin</artifactId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200637 <configuration>
638 <packagingExcludes>WEB-INF\lib\slf4j-log4j*.jar,
639 WEB-INF/classes/elasticsearch.yml,
640 WEB-INF/classes/portal.properties
641 </packagingExcludes>
642 <archive>
643 <manifestEntries>
644 <SDC-Version>${project.version}</SDC-Version>
645 </manifestEntries>
646 <manifest>
647 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
648 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
649 </manifest>
650 </archive>
Michael Lando451a3402017-02-19 10:28:42 +0200651
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200652 <webResources>
653 <resource>
654 <directory>src/main/resources</directory>
655 <directory>src/main/resources/swagger</directory>
656 </resource>
657 </webResources>
658 <attachClasses>true</attachClasses>
659 </configuration>
660 </plugin>
Michael Lando5b593492018-07-29 16:13:45 +0300661 <plugin>
dekstroza37843cb2018-05-18 14:42:24 +0100662 <groupId>com.github.sylvainlaurent.maven</groupId>
663 <artifactId>yaml-json-validator-maven-plugin</artifactId>
664 <executions>
665 <execution>
666 <id>validate</id>
667 <phase>validate</phase>
668 <goals>
669 <goal>validate</goal>
670 </goals>
671 <configuration>
672 <validationSets>
673 <validationSet>
674 <includes>
675 <include>src/main/resources/**/*.y*ml</include>
676 <include>src/test/resources/**/*.y*ml</include>
677 </includes>
678 </validationSet>
679 <validationSet>
680 <includes>
681 <include>src/main/resources/**/*.json</include>
682 <include>src/test/resources/**/*.json</include>
683 </includes>
684 </validationSet>
685 </validationSets>
686 </configuration>
687 </execution>
688 </executions>
689 </plugin>
690 <plugin>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200691 <groupId>com.jcabi</groupId>
692 <artifactId>jcabi-maven-plugin</artifactId>
Michael Landodc856bb2018-08-13 13:27:52 +0300693 <version>${jcabi.maven.plugin.version}</version>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200694 <executions>
695 <execution>
696 <goals>
697 <goal>ajc</goal>
698 </goals>
699 </execution>
700 </executions>
701 </plugin>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200702 <plugin>
703 <groupId>org.apache.maven.plugins</groupId>
704 <artifactId>maven-assembly-plugin</artifactId>
705 <executions>
706 <execution>
707 <id>normatives</id>
708 <phase>package</phase>
709 <goals>
710 <goal>single</goal>
711 </goals>
712 <configuration>
713 <finalName>normatives</finalName>
714 <appendAssemblyId>false</appendAssemblyId>
Michael Lando02ab6512018-04-05 23:32:27 +0300715 <descriptors>
716 <descriptor>${project.basedir}/normatives.xml</descriptor>
717 </descriptors>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200718 </configuration>
719 </execution>
720 </executions>
721 </plugin>
722 <plugin>
Michael Landodc856bb2018-08-13 13:27:52 +0300723 <groupId>org.apache.maven.plugins</groupId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200724 <artifactId>maven-clean-plugin</artifactId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200725 <executions>
726 <execution>
727 <id>clean.sdc.backend.folder</id>
728 <phase>clean</phase>
729 <goals>
730 <goal>clean</goal>
731 </goals>
732 <configuration>
733 <filesets>
734 <!-- static configuration files -->
735 <fileset>
736 <directory>
737 ${project.parent.basedir}/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default
738 </directory>
739 <followSymlinks>false</followSymlinks>
740 <includes>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200741 <include>error-configuration.yaml</include>
742 <include>ecomp-error-configuration.yaml</include>
743 <include>logback.xml</include>
744 </includes>
745 </fileset>
746 <!-- BE WAR's -->
747 <fileset>
748 <directory>${project.parent.basedir}/catalog-be/sdc-backend</directory>
749 <followSymlinks>false</followSymlinks>
750 <includes>
751 <include>*.war</include>
752 </includes>
753 </fileset>
754 <fileset>
755 <directory>
756 ${project.basedir}/sdc-backend-init/chef-repo/cookbooks/sdc-normatives/files/default
757 </directory>
758 <followSymlinks>false</followSymlinks>
759 <includes>
760 <include>normatives.tar.gz</include>
761 </includes>
762 </fileset>
Michael Lando451a3402017-02-19 10:28:42 +0200763
764
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200765 </filesets>
766 </configuration>
767 </execution>
Michael Lando5b593492018-07-29 16:13:45 +0300768
Michael Landoa5445102018-03-04 14:53:33 +0200769 <execution>
Michael Lando5b593492018-07-29 16:13:45 +0300770 <id>clean-static-files</id>
771 <phase>clean</phase>
772 <goals>
773 <goal>clean</goal>
774 </goals>
775 <configuration>
776 <filesets>
777 <!-- tosca files -->
778 <fileset>
779 <directory>${project.parent.basedir}/asdctool/tosca</directory>
780 <followSymlinks>false</followSymlinks>
781 </fileset>
782 </filesets>
783 </configuration>
784 </execution>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200785 </executions>
786 </plugin>
Michael Lando5b593492018-07-29 16:13:45 +0300787 <plugin>
Michael Landodc856bb2018-08-13 13:27:52 +0300788 <groupId>org.apache.maven.plugins</groupId>
Michael Lando5b593492018-07-29 16:13:45 +0300789 <artifactId>maven-resources-plugin</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300790 <executions>
791 <execution>
792 <id>copy-static-configuration-files</id>
793 <phase>verify</phase>
794 <goals>
795 <goal>copy-resources</goal>
796 </goals>
797 <configuration>
Yuli Shlosbergaf70a202018-09-25 17:16:48 +0300798 <outputDirectory>
799 ${project.parent.basedir}/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default
800 </outputDirectory>
Michael Lando5b593492018-07-29 16:13:45 +0300801 <resources>
802 <resource>
Yuli Shlosbergaf70a202018-09-25 17:16:48 +0300803 <directory>${project.parent.basedir}/catalog-be/src/main/resources/config
804 </directory>
Michael Lando5b593492018-07-29 16:13:45 +0300805 <includes>
Michael Lando5b593492018-07-29 16:13:45 +0300806 <include>error-configuration.yaml</include>
807 <include>ecomp-error-configuration.yaml</include>
808 <include>logback.xml</include>
809 </includes>
810 </resource>
811 </resources>
812 </configuration>
813 </execution>
814 <execution>
815 <id>copy-tosca-folder</id>
816 <!-- here the phase you need -->
817 <phase>install</phase>
818 <goals>
819 <goal>copy-resources</goal>
820 </goals>
821 <configuration>
822 <outputDirectory>${project.parent.basedir}/asdctool/tosca</outputDirectory>
823 <resources>
824 <resource>
Yuli Shlosbergaf70a202018-09-25 17:16:48 +0300825 <directory>${project.parent.basedir}/catalog-be/src/main/resources/import/tosca
826 </directory>
Michael Lando5b593492018-07-29 16:13:45 +0300827 <filtering>true</filtering>
828 </resource>
829 </resources>
830 </configuration>
831 </execution>
832 </executions>
833 </plugin>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200834 </plugins>
Michael Lando451a3402017-02-19 10:28:42 +0200835
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200836 <pluginManagement>
837 <plugins>
838 <!--This plugin's configuration is used to store Eclipse m2e settings
839 only. It has no influence on the Maven build itself. -->
840 <plugin>
841 <groupId>org.eclipse.m2e</groupId>
842 <artifactId>lifecycle-mapping</artifactId>
843 <version>1.0.0</version>
844 <configuration>
845 <lifecycleMappingMetadata>
846 <pluginExecutions>
847 <pluginExecution>
848 <pluginExecutionFilter>
849 <groupId>com.googlecode.maven-download-plugin</groupId>
850 <artifactId>download-maven-plugin</artifactId>
851 <versionRange>[1.2.1,)</versionRange>
852 <goals>
853 <goal>wget</goal>
854 </goals>
855 </pluginExecutionFilter>
856 <action>
857 <ignore></ignore>
858 </action>
859 </pluginExecution>
Michael Lando451a3402017-02-19 10:28:42 +0200860
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200861 <pluginExecution>
862 <pluginExecutionFilter>
863 <groupId>com.jcabi</groupId>
864 <artifactId>jcabi-maven-plugin</artifactId>
865 <versionRange>[0.0,)</versionRange>
866 <goals>
867 <goal>ajc</goal>
868 </goals>
869 </pluginExecutionFilter>
870 <action>
871 <execute/>
872 </action>
873 </pluginExecution>
874
875 </pluginExecutions>
876 </lifecycleMappingMetadata>
877 </configuration>
878 </plugin>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200879 </plugins>
880 </pluginManagement>
881 <!-- Swagger Plugins End -->
882 </build>
883
884 <profiles>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200885 <profile>
886 <id>docker-staging</id>
887 <properties>
888 <docker.tag>${project.version}-STAGING-${maven.build.timestamp}</docker.tag>
889 <docker.latest.tag>${project.version}-STAGING-latest</docker.latest.tag>
890 </properties>
891 </profile>
892
893 <profile>
894 <id>docker</id>
895 <activation>
896 <activeByDefault>false</activeByDefault>
897 </activation>
898 <build>
899 <plugins>
900 <plugin>
Michael Landodc856bb2018-08-13 13:27:52 +0300901 <groupId>org.apache.maven.plugins</groupId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200902 <artifactId>maven-resources-plugin</artifactId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200903 <executions>
904 <execution>
905 <id>copy-resources-apidocs</id>
906 <phase>verify</phase>
907 <goals>
908 <goal>copy-resources</goal>
909 </goals>
910 <configuration>
911 <outputDirectory>${basedir}/sdc-backend</outputDirectory>
912 <resources>
913 <resource>
914 <directory>
Gautam Shah09a41f52018-04-11 19:55:29 +0530915 ${project.parent.basedir}/openecomp-be/tools/swagger-ui/target/api-docs
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200916 </directory>
917 <includes>
918 <include>api-docs.war</include>
919 </includes>
920 </resource>
921 </resources>
922 </configuration>
923 </execution>
924
925 <execution>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200926 <id>copy-resources-be</id>
927 <phase>verify</phase>
928 <goals>
929 <goal>copy-resources</goal>
930 </goals>
931 <configuration>
932 <outputDirectory>${basedir}/sdc-backend</outputDirectory>
933 <resources>
934 <resource>
935 <directory>${project.parent.basedir}/catalog-be/target</directory>
936 <includes>
937 <include>catalog-be-${project.version}.war</include>
938 </includes>
939 </resource>
940 <resource>
941 <directory>
942 ${project.parent.basedir}/openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/target
943 </directory>
944 <includes>
945 <include>onboarding-be-${project.version}.war</include>
946 </includes>
947 </resource>
948 </resources>
949 </configuration>
950 </execution>
951 <execution>
952 <id>copy-normatives</id>
953 <phase>verify</phase>
954 <goals>
955 <goal>copy-resources</goal>
956 </goals>
957 <configuration>
Yuli Shlosbergaf70a202018-09-25 17:16:48 +0300958 <outputDirectory>
959 sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/files/default
960 </outputDirectory>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200961 <resources>
962 <resource>
963 <directory>${project.parent.basedir}/catalog-be/target</directory>
964 <includes>
965 <include>normatives.tar.gz</include>
966 </includes>
967 </resource>
968 </resources>
969 </configuration>
970 </execution>
971 </executions>
972 </plugin>
973 <plugin>
974 <groupId>io.fabric8</groupId>
975 <artifactId>docker-maven-plugin</artifactId>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200976 <configuration>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200977 <apiVersion>1.23</apiVersion>
978 <registry>nexus3.onap.org:10001</registry>
979 <authConfig>
980 <pull>
981 <username>docker</username>
982 <password>docker</password>
983 </pull>
984 </authConfig>
985 <images>
986
987 <!-- Build backend image -->
988 <image>
989 <name>onap/sdc-backend</name>
990 <alias>sdc-backend</alias>
991 <build>
992 <cleanup>try</cleanup>
993 <dockerFileDir>${project.basedir}/sdc-backend</dockerFileDir>
994 <tags>
995 <tag>${docker.tag}</tag>
Yuli Shlosbergaf70a202018-09-25 17:16:48 +0300996 <tag>
997 ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest
998 </tag>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +0200999 </tags>
1000 </build>
1001 </image>
1002 <!-- Build backend-init image -->
1003 <image>
1004 <name>onap/sdc-backend-init</name>
1005 <alias>sdc-backend-init</alias>
1006 <build>
1007 <cleanup>try</cleanup>
1008 <dockerFileDir>${project.basedir}/sdc-backend-init</dockerFileDir>
1009 <tags>
1010 <tag>${docker.tag}</tag>
Yuli Shlosbergaf70a202018-09-25 17:16:48 +03001011 <tag>
1012 ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest
1013 </tag>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +02001014 </tags>
1015 </build>
1016 </image>
1017 </images>
1018 </configuration>
1019 <executions>
1020 <execution>
1021 <id>clean-images</id>
1022 <phase>pre-clean</phase>
1023 <goals>
1024 <goal>remove</goal>
1025 </goals>
1026 <configuration>
1027 <removeAll>true</removeAll>
1028 <image>onap/sdc-backend,onap/sdc-backend-init</image>
1029 </configuration>
1030 </execution>
1031
1032 <execution>
1033 <id>generate-images</id>
1034 <phase>install</phase>
1035 <goals>
1036 <goal>build</goal>
1037 </goals>
1038 </execution>
1039
1040 <execution>
1041 <id>push-images</id>
1042 <phase>deploy</phase>
1043 <goals>
1044 <goal>push</goal>
1045 </goals>
1046 <configuration>
1047 <image>onap/sdc-backend,onap/sdc-backend-init</image>
1048 </configuration>
1049 </execution>
1050 </executions>
1051 </plugin>
1052 </plugins>
1053 </build>
1054 </profile>
Yuli Shlosberg958c32d2018-02-15 12:04:46 +02001055 </profiles>
dekstroza37843cb2018-05-18 14:42:24 +01001056</project>