blob: c29850121274730d1a7c541a3912c7257ba4d31c [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>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
Rob Daugherty26419352017-08-04 15:55:54 -04006 <artifactId>so</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -08007 <version>1.2.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </parent>
9
ChrisC025301d2017-01-31 11:40:03 +010010 <artifactId>packages</artifactId>
11 <packaging>pom</packaging>
12 <name>MSO Packages</name>
13
ChrisC1ba1d192017-03-13 05:01:04 -070014
ChrisC025301d2017-01-31 11:40:03 +010015 <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)765a20b2017-10-04 15:52:53 +020028 <!-- Those profile are exclusive, choose docker or with-integration-tests -->
ChrisC025301d2017-01-31 11:40:03 +010029 <profile>
30 <id>docker</id>
31 <modules>
32 <module>deliveries</module>
33 <module>docker</module>
34 </modules>
Determe, Sebastien (sd378r)765a20b2017-10-04 15:52:53 +020035 <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>
ChrisC025301d2017-01-31 11:40:03 +010039 </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)765a20b2017-10-04 15:52:53 +020048 <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>
ChrisC025301d2017-01-31 11:40:03 +010052 </profile>
ChrisC1ba1d192017-03-13 05:01:04 -070053
ChrisC025301d2017-01-31 11:40:03 +010054 </profiles>
55</project>