blob: 799c9d2b9ec724d603e2f670146cfbbd3460b9e0 [file] [log] [blame]
sheetalm297209b2018-02-20 19:06:27 +05301<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xmlns="http://maven.apache.org/POM/4.0.0"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
sheetalm297209b2018-02-20 19:06:27 +05306 <artifactId>activity-spec-web</artifactId>
7 <packaging>pom</packaging>
8
9 <parent>
10 <groupId>org.openecomp.activityspec</groupId>
11 <artifactId>activity-spec</artifactId>
12 <version>1.2.0-SNAPSHOT</version>
13 </parent>
14
15 <modules>
16 <module>activity-spec-service</module>
17 <module>activity-spec-war</module>
sheetalmed128902018-03-13 19:32:08 +053018 <module>activity-spec-api-docs</module>
sheetalm297209b2018-02-20 19:06:27 +053019 </modules>
20
sheetalmed128902018-03-13 19:32:08 +053021 <profiles>
22 <profile>
23 <id>docker</id>
24 <activation>
25 <activeByDefault>false</activeByDefault>
26 </activation>
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>io.fabric8</groupId>
31 <artifactId>docker-maven-plugin</artifactId>
32 <configuration>
33 <images>
34 <image>
35 <name>onap/activity-spec</name>
36 <build>
37 <tags>
38 <tag>${project.version}</tag>
39 </tags>
40 <dockerFileDir>${project.basedir}</dockerFileDir>
41 <dockerFile>Dockerfile</dockerFile>
42 <args>
43 <ARTIFACT_VERSION>${project.version}</ARTIFACT_VERSION>
44 </args>
45 </build>
46 </image>
47 </images>
48 </configuration>
49 </plugin>
50 </plugins>
51 </build>
52 </profile>
53 </profiles>
sheetalm297209b2018-02-20 19:06:27 +053054</project>