Step up version to 1.13.0-SNAPSHOT
[sdc/sdc-workflow-designer.git] / sdc-workflow-designer-be / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <modelVersion>4.0.0</modelVersion>
7
8     <artifactId>sdc-workflow-designer-be</artifactId>
9
10     <parent>
11         <groupId>org.onap.sdc.sdc-workflow-designer</groupId>
12         <artifactId>sdc-workflow-designer-parent</artifactId>
13         <version>1.13.0-SNAPSHOT</version>
14     </parent>
15
16     <properties>
17         <spring.boot.version>2.2.13.RELEASE</spring.boot.version>
18         <org.springframework.version>5.3.30</org.springframework.version>
19         <mapstruct.version>1.5.3.Final</mapstruct.version>
20         <lombok.version>1.18.26</lombok.version>
21         <springfox.version>3.0.0</springfox.version>
22         <jaxb.api.version>2.3.0</jaxb.api.version>
23         <org.glassfish.version>4.0.2</org.glassfish.version>
24         <mockito.version>3.7.7</mockito.version>
25         <springframework.plugin.version>2.0.0.RELEASE</springframework.plugin.version>
26         <zusammen.version>1.0.2</zusammen.version>
27         <sdc-be-common.version>1.7.1</sdc-be-common.version>
28         <junitJupiter.version>5.9.1</junitJupiter.version>
29         <junit.platform.version>1.9.0</junit.platform.version>
30     </properties>
31
32     <dependencyManagement>
33         <dependencies>
34             <dependency>
35                 <groupId>org.mockito</groupId>
36                 <artifactId>mockito-core</artifactId>
37                 <version>${mockito.version}</version>
38                 <scope>test</scope>
39             </dependency>
40             <dependency>
41                 <groupId>org.springframework.boot</groupId>
42                 <artifactId>spring-boot-dependencies</artifactId>
43                 <version>${spring.boot.version}</version>
44                 <type>pom</type>
45                 <scope>import</scope>
46             </dependency>
47         </dependencies>
48     </dependencyManagement>
49
50     <dependencies>
51         <dependency>
52             <groupId>org.codehaus.janino</groupId>
53             <artifactId>janino</artifactId>
54             <version>3.1.10</version>
55             <scope>runtime</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.glassfish</groupId>
59             <artifactId>jakarta.el</artifactId>
60             <version>${org.glassfish.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.springframework</groupId>
64             <artifactId>spring-beans</artifactId>
65             <version>${org.springframework.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>org.springframework</groupId>
69             <artifactId>spring-tx</artifactId>
70             <version>${org.springframework.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>org.springframework</groupId>
74             <artifactId>spring-context</artifactId>
75             <version>${org.springframework.version}</version>
76             <exclusions>
77                 <exclusion>
78                     <groupId>org.springframework</groupId>
79                     <artifactId>spring-aop</artifactId>
80                 </exclusion>
81             </exclusions>
82         </dependency>
83         <dependency>
84             <groupId>org.springframework</groupId>
85             <artifactId>spring-webmvc</artifactId>
86             <version>${org.springframework.version}</version>
87             <exclusions>
88                 <exclusion>
89                     <groupId>org.springframework</groupId>
90                     <artifactId>spring-aop</artifactId>
91                 </exclusion>
92             </exclusions>
93         </dependency>
94         <!-- bridge jck to slf4j -->
95         <dependency>
96             <groupId>org.slf4j</groupId>
97             <artifactId>jcl-over-slf4j</artifactId>
98             <version>1.7.36</version>
99         </dependency>
100
101         <dependency>
102             <groupId>org.springframework</groupId>
103             <artifactId>spring-core</artifactId>
104             <version>${org.springframework.version}</version>
105             <exclusions>
106                 <exclusion>
107                     <groupId>org.springframework</groupId>
108                     <artifactId>spring-jcl</artifactId>
109                 </exclusion>
110             </exclusions>
111         </dependency>
112         <dependency>
113             <groupId>org.springframework</groupId>
114             <artifactId>spring-test</artifactId>
115             <version>${org.springframework.version}</version>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.springframework</groupId>
120             <artifactId>spring-jcl</artifactId>
121             <version>${org.springframework.version}</version>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.springframework</groupId>
126             <artifactId>spring-aop</artifactId>
127             <version>${org.springframework.version}</version>
128         </dependency>
129         <dependency>
130             <groupId>org.springframework</groupId>
131             <artifactId>spring-expression</artifactId>
132             <version>${org.springframework.version}</version>
133         </dependency>
134         <dependency>
135             <groupId>org.springframework</groupId>
136             <artifactId>spring-dao</artifactId>
137             <version>2.0.8</version>
138             <exclusions>
139                 <exclusion>
140                     <groupId>javax.servlet</groupId>
141                     <artifactId>servlet-api</artifactId>
142                 </exclusion>
143             </exclusions>
144         </dependency>
145         <dependency>
146             <groupId>org.springframework</groupId>
147             <artifactId>spring-web</artifactId>
148             <version>${org.springframework.version}</version>
149             <exclusions>
150                 <exclusion>
151                     <groupId>org.springframework</groupId>
152                     <artifactId>spring-beans</artifactId>
153                 </exclusion>
154                 <exclusion>
155                     <groupId>org.springframework</groupId>
156                     <artifactId>spring-core</artifactId>
157                 </exclusion>
158             </exclusions>
159         </dependency>
160         <dependency>
161             <groupId>org.springframework.boot</groupId>
162             <artifactId>spring-boot-starter-web</artifactId>
163             <exclusions>
164                 <exclusion>
165                     <groupId>org.springframework.boot</groupId>
166                     <artifactId>spring-boot-starter-tomcat</artifactId>
167                 </exclusion>
168                 <exclusion>
169                     <groupId>org.springframework</groupId>
170                     <artifactId>spring-web</artifactId>
171                 </exclusion>
172                 <exclusion>
173                     <groupId>org.springframework</groupId>
174                     <artifactId>spring-core</artifactId>
175                 </exclusion>
176                 <exclusion>
177                     <groupId>org.springframework</groupId>
178                     <artifactId>spring-webmvc</artifactId>
179                 </exclusion>
180             </exclusions>
181         </dependency>
182         <dependency>
183             <groupId>org.eclipse.jetty</groupId>
184             <artifactId>jetty-server</artifactId>
185             <version>${jetty.version}</version>
186             <exclusions>
187                 <exclusion>
188                     <groupId>org.eclipse.jetty</groupId>
189                     <artifactId>jetty-http</artifactId>
190                 </exclusion>
191                 <exclusion>
192                     <groupId>org.eclipse.jetty</groupId>
193                     <artifactId>jetty-io</artifactId>
194                 </exclusion>
195             </exclusions>
196         </dependency>
197         <dependency>
198             <groupId>org.eclipse.jetty</groupId>
199             <artifactId>jetty-util</artifactId>
200             <version>${jetty.version}</version>
201         </dependency>
202         <dependency>
203             <groupId>org.eclipse.jetty</groupId>
204             <artifactId>jetty-webapp</artifactId>
205             <version>${jetty.version}</version>
206             <scope>runtime</scope>
207             <exclusions>
208                 <exclusion>
209                     <groupId>org.eclipse.jetty</groupId>
210                     <artifactId>jetty-xml</artifactId>
211                 </exclusion>
212                 <exclusion>
213                     <groupId>org.eclipse.jetty</groupId>
214                     <artifactId>jetty-servlet</artifactId>
215                 </exclusion>
216             </exclusions>
217         </dependency>
218         <dependency>
219             <groupId>org.eclipse.jetty</groupId>
220             <artifactId>jetty-servlet</artifactId>
221             <version>${jetty.version}</version>
222             <scope>runtime</scope>
223             <exclusions>
224                 <exclusion>
225                     <groupId>org.eclipse.jetty</groupId>
226                     <artifactId>jetty-security</artifactId>
227                 </exclusion>
228                 <exclusion>
229                     <groupId>org.eclipse.jetty</groupId>
230                     <artifactId>jetty-util-ajax</artifactId>
231                 </exclusion>
232             </exclusions>
233         </dependency>
234         <dependency>
235             <groupId>org.eclipse.jetty</groupId>
236             <artifactId>jetty-security</artifactId>
237             <version>${jetty.version}</version>
238             <scope>runtime</scope>
239         </dependency>
240         <dependency>
241             <groupId>org.eclipse.jetty</groupId>
242             <artifactId>jetty-http</artifactId>
243             <version>${jetty.version}</version>
244             <scope>runtime</scope>
245             <exclusions>
246                 <exclusion>
247                     <groupId>org.eclipse.jetty</groupId>
248                     <artifactId>jetty-io</artifactId>
249                 </exclusion>
250             </exclusions>
251         </dependency>
252         <dependency>
253             <groupId>org.eclipse.jetty</groupId>
254             <artifactId>jetty-io</artifactId>
255             <version>${jetty.version}</version>
256             <scope>runtime</scope>
257         </dependency>
258         <dependency>
259             <groupId>org.springframework.boot</groupId>
260             <artifactId>spring-boot-starter-jetty</artifactId>
261             <exclusions>
262                 <exclusion>
263                     <groupId>org.glassfish</groupId>
264                     <artifactId>jakarta.el</artifactId>
265                 </exclusion>
266                 <exclusion>
267                     <groupId>org.eclipse.jetty</groupId>
268                     <artifactId>jetty-servlets</artifactId>
269                 </exclusion>
270                 <exclusion>
271                     <groupId>org.eclipse.jetty</groupId>
272                     <artifactId>jetty-webapp</artifactId>
273                 </exclusion>
274                 <exclusion>
275                     <groupId>org.eclipse.jetty.websocket</groupId>
276                     <artifactId>websocket-server</artifactId>
277                 </exclusion>
278                 <exclusion>
279                     <groupId>org.eclipse.jetty.websocket</groupId>
280                     <artifactId>javax-websocket-server-impl</artifactId>
281                 </exclusion>
282             </exclusions>
283         </dependency>
284         <dependency>
285             <groupId>org.springframework.boot</groupId>
286             <artifactId>spring-boot-starter-validation</artifactId>
287             <exclusions>
288                 <exclusion>
289                     <groupId>org.glassfish</groupId>
290                     <artifactId>jakarta.el</artifactId>
291                 </exclusion>
292             </exclusions>
293         </dependency>
294         <dependency>
295             <groupId>org.springframework.boot</groupId>
296             <artifactId>spring-boot-starter-data-cassandra</artifactId>
297             <exclusions>
298                 <exclusion>
299                     <artifactId>HdrHistogram</artifactId>
300                     <groupId>org.hdrhistogram</groupId>
301                 </exclusion>
302                 <exclusion>
303                     <artifactId>asm</artifactId>
304                     <groupId>org.ow2.asm</groupId>
305                 </exclusion>
306                 <exclusion>
307                     <artifactId>asm-analysis</artifactId>
308                     <groupId>org.ow2.asm</groupId>
309                 </exclusion>
310                 <exclusion>
311                     <artifactId>asm-commons</artifactId>
312                     <groupId>org.ow2.asm</groupId>
313                 </exclusion>
314                 <exclusion>
315                     <artifactId>asm-tree</artifactId>
316                     <groupId>org.ow2.asm</groupId>
317                 </exclusion>
318                 <exclusion>
319                     <groupId>com.github.jnr</groupId>
320                     <artifactId>jnr-posix</artifactId>
321                 </exclusion>
322                 <exclusion>
323                     <groupId>io.netty</groupId>
324                     <artifactId>netty-handler</artifactId>
325                 </exclusion>
326                 <exclusion>
327                     <groupId>org.springframework</groupId>
328                     <artifactId>spring-tx</artifactId>
329                 </exclusion>
330                 <exclusion>
331                     <groupId>org.springframework</groupId>
332                     <artifactId>spring-context</artifactId>
333                 </exclusion>
334                 <exclusion>
335                     <groupId>org.springframework</groupId>
336                     <artifactId>spring-beans</artifactId>
337                 </exclusion>
338                 <exclusion>
339                     <groupId>org.springframework</groupId>
340                     <artifactId>spring-core</artifactId>
341                 </exclusion>
342                 <exclusion>
343                     <groupId>org.springframework</groupId>
344                     <artifactId>spring-expression</artifactId>
345                 </exclusion>
346             </exclusions>
347         </dependency>
348         <dependency>
349             <groupId>io.netty</groupId>
350             <artifactId>netty-handler</artifactId>
351             <version>4.1.80.Final</version>
352         </dependency>
353         <dependency>
354             <groupId>org.springframework.boot</groupId>
355             <artifactId>spring-boot-devtools</artifactId>
356             <scope>runtime</scope>
357             <exclusions>
358                 <exclusion>
359                     <groupId>org.springframework</groupId>
360                     <artifactId>spring-core</artifactId>
361                 </exclusion>
362                 <exclusion>
363                     <groupId>org.springframework</groupId>
364                     <artifactId>spring-context</artifactId>
365                 </exclusion>
366             </exclusions>
367         </dependency>
368         <dependency>
369             <groupId>org.springframework.boot</groupId>
370             <artifactId>spring-boot-starter-test</artifactId>
371             <scope>test</scope>
372             <exclusions>
373                 <exclusion>
374                     <artifactId>asm</artifactId>
375                     <groupId>org.ow2.asm</groupId>
376                 </exclusion>
377                 <exclusion>
378                     <groupId>junit</groupId>
379                     <artifactId>junit</artifactId>
380                 </exclusion>
381                 <exclusion>
382                     <groupId>org.springframework</groupId>
383                     <artifactId>spring-core</artifactId>
384                 </exclusion>
385                 <exclusion>
386                     <groupId>org.springframework</groupId>
387                     <artifactId>spring-test</artifactId>
388                 </exclusion>
389             </exclusions>
390         </dependency>
391         <dependency>
392             <groupId>io.springfox</groupId>
393             <artifactId>springfox-boot-starter</artifactId>
394             <version>${springfox.version}</version>
395             <exclusions>
396                 <exclusion>
397                     <groupId>org.springframework.plugin</groupId>
398                     <artifactId>spring-plugin-core</artifactId>
399                 </exclusion>
400                 <exclusion>
401                     <groupId>org.springframework.plugin</groupId>
402                     <artifactId>spring-plugin-metadata</artifactId>
403                 </exclusion>
404             </exclusions>
405         </dependency>
406         <dependency>
407             <groupId>org.springframework.plugin</groupId>
408             <artifactId>spring-plugin-core</artifactId>
409             <version>${springframework.plugin.version}</version>
410             <exclusions>
411                 <exclusion>
412                     <groupId>org.springframework</groupId>
413                     <artifactId>spring-beans</artifactId>
414                 </exclusion>
415                 <exclusion>
416                     <groupId>org.springframework</groupId>
417                     <artifactId>spring-context</artifactId>
418                 </exclusion>
419                 <exclusion>
420                     <groupId>org.springframework</groupId>
421                     <artifactId>spring-aop</artifactId>
422                 </exclusion>
423             </exclusions>
424         </dependency>
425         <dependency>
426             <groupId>org.springframework.plugin</groupId>
427             <artifactId>spring-plugin-metadata</artifactId>
428             <version>${springframework.plugin.version}</version>
429         </dependency>
430         <dependency>
431             <groupId>org.openecomp.sdc</groupId>
432             <artifactId>openecomp-sdc-logging-api</artifactId>
433             <version>${onap.version}</version>
434         </dependency>
435         <dependency>
436             <groupId>org.openecomp.sdc</groupId>
437             <artifactId>openecomp-sdc-logging-spring</artifactId>
438             <version>${onap.version}</version>
439         </dependency>
440         <dependency>
441             <groupId>org.openecomp.sdc</groupId>
442             <artifactId>openecomp-sdc-logging-core</artifactId>
443             <version>${onap.version}</version>
444             <scope>runtime</scope>
445         </dependency>
446         <dependency>
447             <groupId>ch.qos.logback</groupId>
448             <artifactId>logback-classic</artifactId>
449             <version>1.2.11</version>
450             <scope>runtime</scope>
451         </dependency>
452         <dependency>
453             <groupId>org.apache.httpcomponents</groupId>
454             <artifactId>httpclient</artifactId>
455             <version>4.5.13</version>
456             <exclusions>
457                 <exclusion>
458                     <artifactId>commons-codec</artifactId>
459                     <groupId>commons-codec</groupId>
460                 </exclusion>
461             </exclusions>
462         </dependency>
463         <dependency>
464             <groupId>org.mapstruct</groupId>
465             <artifactId>mapstruct</artifactId>
466             <version>${mapstruct.version}</version>
467         </dependency>
468         <dependency>
469             <groupId>org.mapstruct</groupId>
470             <artifactId>mapstruct-processor</artifactId>
471             <version>${mapstruct.version}</version>
472             <scope>provided</scope>
473         </dependency>
474         <dependency>
475             <groupId>org.projectlombok</groupId>
476             <artifactId>lombok</artifactId>
477             <version>${lombok.version}</version>
478         </dependency>
479         <dependency>
480             <groupId>org.projectlombok</groupId>
481             <artifactId>lombok-mapstruct-binding</artifactId>
482             <version>0.2.0</version>
483         </dependency>
484         <dependency>
485             <groupId>org.springframework.boot</groupId>
486             <artifactId>spring-boot-starter-actuator</artifactId>
487             <scope>provided</scope>
488             <exclusions>
489                 <exclusion>
490                     <groupId>org.springframework</groupId>
491                     <artifactId>spring-core</artifactId>
492                 </exclusion>
493                 <exclusion>
494                     <groupId>org.springframework</groupId>
495                     <artifactId>spring-context</artifactId>
496                 </exclusion>
497             </exclusions>
498         </dependency>
499         <dependency>
500             <groupId>org.apache.commons</groupId>
501             <artifactId>commons-text</artifactId>
502             <version>1.3</version>
503         </dependency>
504         <dependency>
505             <groupId>commons-io</groupId>
506             <artifactId>commons-io</artifactId>
507             <version>2.8.0</version>
508         </dependency>
509         <dependency>
510             <groupId>commons-codec</groupId>
511             <artifactId>commons-codec</artifactId>
512             <version>1.15</version>
513         </dependency>
514         <dependency>
515             <groupId>org.onap.sdc.sdc-be-common</groupId>
516             <artifactId>session-lib</artifactId>
517             <version>${sdc-be-common.version}</version>
518             <exclusions>
519                 <exclusion>
520                     <artifactId>objenesis</artifactId>
521                     <groupId>org.objenesis</groupId>
522                 </exclusion>
523                 <exclusion>
524                     <groupId>junit</groupId>
525                     <artifactId>junit</artifactId>
526                 </exclusion>
527             </exclusions>
528         </dependency>
529
530         <dependency>
531             <groupId>org.junit.vintage</groupId>
532             <artifactId>junit-vintage-engine</artifactId>
533             <version>${junitJupiter.version}</version>
534             <scope>test</scope>
535         </dependency>
536         <dependency>
537             <groupId>org.junit.platform</groupId>
538             <artifactId>junit-platform-commons</artifactId>
539             <version>${junit.platform.version}</version>
540             <scope>test</scope>
541         </dependency>
542         <dependency>
543             <groupId>org.junit.platform</groupId>
544             <artifactId>junit-platform-engine</artifactId>
545             <version>${junit.platform.version}</version>
546             <scope>test</scope>
547         </dependency>
548
549         <dependency>
550             <groupId>org.onap.sdc.sdc-be-common</groupId>
551             <artifactId>versioning-lib</artifactId>
552             <version>${sdc-be-common.version}</version>
553             <exclusions>
554                 <exclusion>
555                     <groupId>org.springframework.boot</groupId>
556                     <artifactId>spring-boot-starter-data-cassandra</artifactId>
557                 </exclusion>
558             </exclusions>
559         </dependency>
560         <dependency>
561             <groupId>org.onap.sdc.sdc-be-common</groupId>
562             <artifactId>zusammen-lib</artifactId>
563             <version>${sdc-be-common.version}</version>
564             <exclusions>
565                 <exclusion>
566                     <groupId>org.springframework.boot</groupId>
567                     <artifactId>spring-boot-starter-data-cassandra</artifactId>
568                 </exclusion>
569                 <exclusion>
570                     <artifactId>jnr-posix</artifactId>
571                     <groupId>com.github.jnr</groupId>
572                 </exclusion>
573                 <exclusion>
574                     <artifactId>jnr-ffi</artifactId>
575                     <groupId>com.github.jnr</groupId>
576                 </exclusion>
577                 <exclusion>
578                     <artifactId>zusammen-sdk</artifactId>
579                     <groupId>com.amdocs.zusammen</groupId>
580                 </exclusion>
581                 <exclusion>
582                     <artifactId>zusammen-commons-configuration</artifactId>
583                     <groupId>com.amdocs.zusammen</groupId>
584                 </exclusion>
585                 <exclusion>
586                     <groupId>io.netty</groupId>
587                     <artifactId>netty-handler</artifactId>
588                 </exclusion>
589             </exclusions>
590         </dependency>
591         <dependency>
592             <groupId>javax.xml.bind</groupId>
593             <artifactId>jaxb-api</artifactId>
594             <version>${jaxb.api.version}</version>
595         </dependency>
596         <dependency>
597             <groupId>com.amdocs.zusammen</groupId>
598             <artifactId>zusammen-sdk</artifactId>
599             <version>${zusammen.version}</version>
600         </dependency>
601         <dependency>
602             <groupId>com.amdocs.zusammen</groupId>
603             <artifactId>zusammen-commons-configuration</artifactId>
604             <version>${zusammen.version}</version>
605         </dependency>
606     </dependencies>
607
608     <build>
609         <plugins>
610             <plugin>
611                 <groupId>org.springframework.boot</groupId>
612                 <artifactId>spring-boot-maven-plugin</artifactId>
613                 <version>${spring.boot.version}</version>
614                 <executions>
615                     <execution>
616                         <goals>
617                             <goal>repackage</goal>
618                         </goals>
619                     </execution>
620                 </executions>
621             </plugin>
622             <plugin>
623                 <groupId>org.apache.maven.plugins</groupId>
624                 <artifactId>maven-surefire-plugin</artifactId>
625                 <version>2.22.2</version>
626                 <dependencies>
627                     <dependency>
628                         <groupId>org.apache.maven.surefire</groupId>
629                         <artifactId>surefire-junit-platform</artifactId>
630                         <version>2.22.2</version>
631                     </dependency>
632                 </dependencies>
633             </plugin>
634         </plugins>
635     </build>
636
637     <profiles>
638         <profile>
639             <id>docker</id>
640             <activation>
641                 <activeByDefault>false</activeByDefault>
642             </activation>
643             <build>
644                 <plugins>
645                     <plugin>
646                         <groupId>org.apache.maven.plugins</groupId>
647                         <artifactId>maven-resources-plugin</artifactId>
648                         <version>3.2.0</version>
649                         <executions>
650                             <execution>
651                                 <id>copy-resources-docker</id>
652                                 <phase>install</phase>
653                                 <goals>
654                                     <goal>copy-resources</goal>
655                                 </goals>
656                                 <configuration>
657                                     <outputDirectory>${basedir}/docker</outputDirectory>
658                                     <resources>
659                                         <resource>
660                                             <directory>${project.build.directory}</directory>
661                                             <include>${project.build.finalName}.jar</include>
662                                         </resource>
663                                     </resources>
664                                 </configuration>
665                             </execution>
666                         </executions>
667                     </plugin>
668                     <plugin>
669                         <groupId>io.fabric8</groupId>
670                         <artifactId>docker-maven-plugin</artifactId>
671                         <configuration>
672                             <apiVersion>${docker.api.version}</apiVersion>
673                             <images>
674                                 <image>
675                                     <name>onap/sdc-workflow-backend</name>
676                                     <build>
677                                         <tags>
678                                             <tag>latest</tag>
679                                             <tag>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest</tag>
680                                             <tag>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-${maven.build.timestamp}</tag>
681                                         </tags>
682                                         <dockerFileDir>${project.basedir}/docker</dockerFileDir>
683                                         <args>
684                                             <ARTIFACT>${project.build.finalName}.jar</ARTIFACT>
685                                         </args>
686                                     </build>
687                                 </image>
688                             </images>
689                         </configuration>
690                     </plugin>
691                 </plugins>
692             </build>
693         </profile>
694     </profiles>
695
696 </project>