Merge "Update the VFC NS resource recipe"
[so.git] / packages / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">\r
3         <modelVersion>4.0.0</modelVersion>\r
4         <parent>\r
5                 <groupId>org.onap.so</groupId>\r
6                 <artifactId>so</artifactId>\r
7                 <version>1.2.0-SNAPSHOT</version>\r
8         </parent>\r
9 \r
10         <artifactId>packages</artifactId>\r
11         <packaging>pom</packaging>\r
12         <name>MSO Packages</name>\r
13 \r
14 \r
15         <profiles>\r
16                 <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! -->\r
17 \r
18                 <profile>\r
19                         <id>default</id>\r
20                         <activation>\r
21                                 <activeByDefault>true</activeByDefault>\r
22                         </activation>\r
23                         <modules>\r
24                                 <module>deliveries</module>\r
25                         </modules>\r
26                 </profile>\r
27 \r
28     <!-- Those profile are exclusive, choose docker or with-integration-tests -->\r
29                 <profile>\r
30                         <id>docker</id>\r
31                         <modules>\r
32                                 <module>deliveries</module>\r
33                                 <module>docker</module>\r
34                         </modules>\r
35                         <properties>\r
36                                         <!-- For this profile we probably don't want to skip the docker push (if deploy goal is specified) -->\r
37                                         <docker.skip.push>false</docker.skip.push>\r
38                         </properties>\r
39                 </profile>\r
40 \r
41                 <profile>\r
42                         <id>with-integration-tests</id>\r
43                         <modules>\r
44                                 <module>deliveries</module>\r
45                                 <module>docker</module>\r
46                                 <module>arquillian-unit-tests</module>\r
47                         </modules>\r
48                         <properties>\r
49                                         <!-- For this profile we want to skip the docker push (if deploy goal is specified) -->\r
50                                         <docker.skip.push>true</docker.skip.push>\r
51                         </properties>\r
52                 </profile>\r
53 \r
54         </profiles>\r
55 </project>\r