update sdc version
[sdc.git] / services / activity-spec / activity-spec-web / pom.xml
1 <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
6     <artifactId>activity-spec-web</artifactId>
7     <packaging>pom</packaging>
8
9     <parent>
10         <groupId>org.onap.sdc.activityspec</groupId>
11         <artifactId>activity-spec</artifactId>
12         <version>1.3.0-SNAPSHOT</version>
13     </parent>
14
15     <modules>
16         <module>activity-spec-service</module>
17         <module>activity-spec-war</module>
18         <module>activity-spec-api-docs</module>
19     </modules>
20
21     <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>
54 </project>