Merge "add api integration and add review comments"
[sdc/sdc-workflow-designer.git] / workflow-designer-init / pom.xml
1 <project
2         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xmlns="http://maven.apache.org/POM/4.0.0"
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     <artifactId>workflow-designer-init</artifactId>
8     <packaging>pom</packaging>
9
10     <parent>
11         <groupId>org.onap.sdc.sdc-workflow-designer</groupId>
12         <artifactId>workflow-designer-parent</artifactId>
13         <version>1.3.0-SNAPSHOT</version>
14     </parent>
15
16     <profiles>
17         <profile>
18             <id>docker</id>
19             <activation>
20                 <activeByDefault>false</activeByDefault>
21             </activation>
22             <build>
23                 <plugins>
24                     <plugin>
25                         <groupId>io.fabric8</groupId>
26                         <artifactId>docker-maven-plugin</artifactId>
27                         <configuration>
28                             <images>
29                                 <image>
30                                     <name>onap/workflow-init</name>
31                                     <build>
32                                         <tags>
33                                             <tag>${project.version}</tag>
34                                         </tags>
35                                         <dockerFile>Dockerfile</dockerFile>
36                                     </build>
37                                 </image>
38                             </images>
39                         </configuration>
40                     </plugin>
41                 </plugins>
42             </build>
43         </profile>
44     </profiles>
45 </project>