blob: ff1be1fad0f2c5c7c7d76c1ee2f7618715cf868d [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>
Rob Daugherty8047b7c2017-08-01 11:56:58 -04005 <groupId>org.openecomp.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
Rob Daugherty9de3ce02017-08-04 12:15:51 -040010 <groupId>org.openecomp.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +010011 <artifactId>packages</artifactId>
12 <packaging>pom</packaging>
13 <name>MSO Packages</name>
14
ChrisC1ba1d192017-03-13 05:01:04 -070015
ChrisC025301d2017-01-31 11:40:03 +010016 <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)765a20b2017-10-04 15:52:53 +020029 <!-- Those profile are exclusive, choose docker or with-integration-tests -->
ChrisC025301d2017-01-31 11:40:03 +010030 <profile>
31 <id>docker</id>
32 <modules>
33 <module>deliveries</module>
34 <module>docker</module>
35 </modules>
Determe, Sebastien (sd378r)765a20b2017-10-04 15:52:53 +020036 <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>
ChrisC025301d2017-01-31 11:40:03 +010040 </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)765a20b2017-10-04 15:52:53 +020049 <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>
ChrisC025301d2017-01-31 11:40:03 +010053 </profile>
ChrisC1ba1d192017-03-13 05:01:04 -070054
ChrisC025301d2017-01-31 11:40:03 +010055 </profiles>
56</project>