ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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>
|
Rob Daugherty | 8047b7c | 2017-08-01 11:56:58 -0400 | [diff] [blame] | 5 | <groupId>org.openecomp.so</groupId>
|
Rob Daugherty | 2641935 | 2017-08-04 15:55:54 -0400 | [diff] [blame] | 6 | <artifactId>so</artifactId>
|
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 7 | <version>1.1.0-SNAPSHOT</version>
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 8 | </parent>
|
| 9 |
|
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 10 | <groupId>org.openecomp.so</groupId>
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 11 | <artifactId>packages</artifactId>
|
| 12 | <packaging>pom</packaging>
|
| 13 | <name>MSO Packages</name>
|
| 14 |
|
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 15 |
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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>
|
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 45 |
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 46 | </profiles>
|
| 47 | </project>
|