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>
|
Jessica Wagantall | 777f637 | 2017-11-20 11:10:28 -0800 | [diff] [blame] | 7 | <version>1.2.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 |
|
Determe, Sebastien (sd378r) | 765a20b | 2017-10-04 15:52:53 +0200 | [diff] [blame] | 29 | <!-- Those profile are exclusive, choose docker or with-integration-tests -->
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 30 | <profile>
|
| 31 | <id>docker</id>
|
| 32 | <modules>
|
| 33 | <module>deliveries</module>
|
| 34 | <module>docker</module>
|
| 35 | </modules>
|
Determe, Sebastien (sd378r) | 765a20b | 2017-10-04 15:52:53 +0200 | [diff] [blame] | 36 | <properties>
|
| 37 | <!-- For this profile we probably don't want to skip the docker push (if deploy goal is specified) -->
|
| 38 | <docker.skip.push>false</docker.skip.push>
|
| 39 | </properties>
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 40 | </profile>
|
| 41 |
|
| 42 | <profile>
|
| 43 | <id>with-integration-tests</id>
|
| 44 | <modules>
|
| 45 | <module>deliveries</module>
|
| 46 | <module>docker</module>
|
| 47 | <module>arquillian-unit-tests</module>
|
| 48 | </modules>
|
Determe, Sebastien (sd378r) | 765a20b | 2017-10-04 15:52:53 +0200 | [diff] [blame] | 49 | <properties>
|
| 50 | <!-- For this profile we want to skip the docker push (if deploy goal is specified) -->
|
| 51 | <docker.skip.push>true</docker.skip.push>
|
| 52 | </properties>
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 53 | </profile>
|
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 54 |
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 55 | </profiles>
|
| 56 | </project>
|