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>
|
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 5 | <groupId>org.onap.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 |
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 10 | <artifactId>packages</artifactId>
|
| 11 | <packaging>pom</packaging>
|
| 12 | <name>MSO Packages</name>
|
| 13 |
|
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 14 |
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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 | <modules>
|
| 24 | <module>deliveries</module>
|
| 25 | </modules>
|
| 26 | </profile>
|
| 27 |
|
Determe, Sebastien (sd378r) | 765a20b | 2017-10-04 15:52:53 +0200 | [diff] [blame] | 28 | <!-- Those profile are exclusive, choose docker or with-integration-tests -->
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 29 | <profile>
|
| 30 | <id>docker</id>
|
| 31 | <modules>
|
| 32 | <module>deliveries</module>
|
| 33 | <module>docker</module>
|
| 34 | </modules>
|
Determe, Sebastien (sd378r) | 765a20b | 2017-10-04 15:52:53 +0200 | [diff] [blame] | 35 | <properties>
|
| 36 | <!-- For this profile we probably don't want to skip the docker push (if deploy goal is specified) -->
|
| 37 | <docker.skip.push>false</docker.skip.push>
|
| 38 | </properties>
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 39 | </profile>
|
| 40 |
|
| 41 | <profile>
|
| 42 | <id>with-integration-tests</id>
|
| 43 | <modules>
|
| 44 | <module>deliveries</module>
|
| 45 | <module>docker</module>
|
| 46 | <module>arquillian-unit-tests</module>
|
| 47 | </modules>
|
Determe, Sebastien (sd378r) | 765a20b | 2017-10-04 15:52:53 +0200 | [diff] [blame] | 48 | <properties>
|
| 49 | <!-- For this profile we want to skip the docker push (if deploy goal is specified) -->
|
| 50 | <docker.skip.push>true</docker.skip.push>
|
| 51 | </properties>
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 52 | </profile>
|
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 53 |
|
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 54 | </profiles>
|
| 55 | </project>
|