diff options
author | Jimmy Forsyth <jf2512@att.com> | 2017-02-17 14:11:35 -0500 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2017-02-17 14:11:35 -0500 |
commit | 48bf0aca24af4b5cc1bf53bcdbf3f66b82710154 (patch) | |
tree | dc58df4fbddd3731e43d00c6422c799a186503a1 | |
parent | 36e9126897969280f0b27d328f97064a42cdf6a0 (diff) |
[OS-144] Added docker profile
Change-Id: I3b6b7d6368e2fa7d925384068fbade6fda365d8c
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
-rw-r--r-- | pom.xml | 24 |
1 files changed, 20 insertions, 4 deletions
@@ -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> |