Revert "update sdc version"
[sdc.git] / services / activity-spec / activity-spec-init / 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
5     <modelVersion>4.0.0</modelVersion>
6
7     <artifactId>activity-spec-init</artifactId>
8     <packaging>pom</packaging>
9
10     <parent>
11         <groupId>org.onap.sdc.activityspec</groupId>
12         <artifactId>activity-spec</artifactId>
13         <version>1.2.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/activity-spec-init</name>
31                                     <build>
32                                         <tags>
33                                             <tag>${project.version}</tag>
34                                         </tags>
35                                         <dockerFileDir>${project.basedir}</dockerFileDir>
36                                         <dockerFile>Dockerfile</dockerFile>
37                                     </build>
38                                 </image>
39                             </images>
40                         </configuration>
41                     </plugin>
42                 </plugins>
43             </build>
44         </profile>
45     </profiles>
46
47 </project>