aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJimmy Forsyth <jf2512@att.com>2017-02-17 14:11:35 -0500
committerJimmy Forsyth <jf2512@att.com>2017-02-17 14:11:35 -0500
commit48bf0aca24af4b5cc1bf53bcdbf3f66b82710154 (patch)
treedc58df4fbddd3731e43d00c6422c799a186503a1
parent36e9126897969280f0b27d328f97064a42cdf6a0 (diff)
[OS-144] Added docker profile
Change-Id: I3b6b7d6368e2fa7d925384068fbade6fda365d8c Signed-off-by: Jimmy Forsyth <jf2512@att.com>
-rw-r--r--pom.xml24
1 files changed, 20 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index e3969ea0c..0ebc6191b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,10 +6,26 @@
<packaging>pom</packaging>
<name>VID Parent Project</name>
- <modules>
- <module>vid</module>
- <module>deliveries</module>
- </modules>
+ <profiles>
+ <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! -->
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>vid</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>docker</id>
+ <modules>
+ <module>vid</module>
+ <module>deliveries</module>
+ </modules>
+ </profile>
+ </profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>