Merge "Remove duplicated constants"
[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.openecomp.so</groupId>\r
6                 <artifactId>so</artifactId>\r
7                 <version>1.2.0-SNAPSHOT</version>\r
8         </parent>\r
9 \r
10         <groupId>org.openecomp.so</groupId>\r
11         <artifactId>packages</artifactId>\r
12         <packaging>pom</packaging>\r
13         <name>MSO Packages</name>\r
14 \r
15 \r
16         <profiles>\r
17                 <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! -->\r
18 \r
19                 <profile>\r
20                         <id>default</id>\r
21                         <activation>\r
22                                 <activeByDefault>true</activeByDefault>\r
23                         </activation>\r
24                         <modules>\r
25                                 <module>deliveries</module>\r
26                         </modules>\r
27                 </profile>\r
28 \r
29     <!-- Those profile are exclusive, choose docker or with-integration-tests -->\r
30                 <profile>\r
31                         <id>docker</id>\r
32                         <modules>\r
33                                 <module>deliveries</module>\r
34                                 <module>docker</module>\r
35                         </modules>\r
36                         <properties>\r
37                                         <!-- For this profile we probably don't want to skip the docker push (if deploy goal is specified) -->\r
38                                         <docker.skip.push>false</docker.skip.push>\r
39                         </properties>\r
40                 </profile>\r
41 \r
42                 <profile>\r
43                         <id>with-integration-tests</id>\r
44                         <modules>\r
45                                 <module>deliveries</module>\r
46                                 <module>docker</module>\r
47                                 <module>arquillian-unit-tests</module>\r
48                         </modules>\r
49                         <properties>\r
50                                         <!-- For this profile we want to skip the docker push (if deploy goal is specified) -->\r
51                                         <docker.skip.push>true</docker.skip.push>\r
52                         </properties>\r
53                 </profile>\r
54 \r
55         </profiles>\r
56 </project>\r