priyanshu | 7e78cd1 | 2018-07-16 19:25:05 +0530 | [diff] [blame] | 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> |
vempo | b4e1091 | 2018-07-26 12:10:37 +0300 | [diff] [blame] | 11 | <groupId>org.onap.sdc.sdc-workflow-designer</groupId> |
priyanshu | 7e78cd1 | 2018-07-16 19:25:05 +0530 | [diff] [blame] | 12 | <artifactId>workflow-designer-parent</artifactId> |
talig | 89d869e | 2019-11-25 09:32:56 +0200 | [diff] [blame] | 13 | <version>1.6.0-SNAPSHOT</version> |
priyanshu | 7e78cd1 | 2018-07-16 19:25:05 +0530 | [diff] [blame] | 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> |