diff options
author | ChrisC <cc697w@intl.att.com> | 2017-01-31 11:40:03 +0100 |
---|---|---|
committer | ChrisC <cc697w@intl.att.com> | 2017-01-31 12:59:33 +0100 |
commit | 025301d08b061482c1f046d562bf017c8cbcfe8d (patch) | |
tree | 68a2a549736c9bf0f7cd4e71c76e40ef7e2606f2 /packages/pom.xml | |
parent | 2754ad52f833278a5c925bd788a16d1dce16a598 (diff) |
Initial OpenECOMP MSO commit
Change-Id: Ia6a7574859480717402cc2f22534d9973a78fa6d
Signed-off-by: ChrisC <cc697w@intl.att.com>
Diffstat (limited to 'packages/pom.xml')
-rw-r--r-- | packages/pom.xml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/packages/pom.xml b/packages/pom.xml new file mode 100644 index 0000000000..beb7251320 --- /dev/null +++ b/packages/pom.xml @@ -0,0 +1,47 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>mso</artifactId>
+ <groupId>org.openecomp</groupId>
+ <version>0.0.4-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.openecomp.mso</groupId>
+ <artifactId>packages</artifactId>
+ <packaging>pom</packaging>
+ <name>MSO Packages</name>
+
+
+ <profiles>
+ <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! -->
+
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>deliveries</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>docker</id>
+ <modules>
+ <module>deliveries</module>
+ <module>docker</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>with-integration-tests</id>
+ <modules>
+ <module>deliveries</module>
+ <module>docker</module>
+ <module>arquillian-unit-tests</module>
+ </modules>
+ </profile>
+
+ </profiles>
+</project>
|