784de9aec20699ad1328b941eda77fc409549bca
[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"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.onap.so</groupId>
6     <artifactId>so</artifactId>
7     <version>1.12.1-SNAPSHOT</version>
8   </parent>
9
10   <artifactId>packages</artifactId>
11   <packaging>pom</packaging>
12   <name>MSO Packages</name>
13
14
15   <profiles>
16     <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! -->
17
18     <profile>
19       <id>default</id>
20       <activation>
21         <activeByDefault>true</activeByDefault>
22       </activation>
23     </profile>
24
25     <!-- Those profile are exclusive, choose docker or with-integration-tests -->
26     <profile>
27       <id>docker</id>
28       <modules>
29         <module>docker</module>
30       </modules>
31       <properties>
32         <!-- For this profile we probably don't want to skip the docker push (if deploy goal is specified) -->
33         <docker.skip.push>false</docker.skip.push>
34       </properties>
35     </profile>
36   </profiles>
37 </project>