blob: beb72513201213576e52763fc81946db597d7ae4 [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<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 <artifactId>mso</artifactId>
6 <groupId>org.openecomp</groupId>
7 <version>0.0.4-SNAPSHOT</version>
8 </parent>
9
10 <groupId>org.openecomp.mso</groupId>
11 <artifactId>packages</artifactId>
12 <packaging>pom</packaging>
13 <name>MSO Packages</name>
14
15
16 <profiles>
17 <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! -->
18
19 <profile>
20 <id>default</id>
21 <activation>
22 <activeByDefault>true</activeByDefault>
23 </activation>
24 <modules>
25 <module>deliveries</module>
26 </modules>
27 </profile>
28
29 <profile>
30 <id>docker</id>
31 <modules>
32 <module>deliveries</module>
33 <module>docker</module>
34 </modules>
35 </profile>
36
37 <profile>
38 <id>with-integration-tests</id>
39 <modules>
40 <module>deliveries</module>
41 <module>docker</module>
42 <module>arquillian-unit-tests</module>
43 </modules>
44 </profile>
45
46 </profiles>
47</project>