summaryrefslogtreecommitdiffstats
path: root/packages/pom.xml
diff options
context:
space:
mode:
authorJorge Hernandez <jorge.hernandez-herrero@att.com>2019-06-11 14:18:21 +0000
committerGerrit Code Review <gerrit@onap.org>2019-06-11 14:18:21 +0000
commit0d7a5339ba139cdc8a480873240aae4a67abbc37 (patch)
tree45e434bc457a3a36a5754ba3f0d0e206b54f77b5 /packages/pom.xml
parent650638c17e9d5bcdd6ed1de212e0895d5ed74ea2 (diff)
parent7937bce5b0289ba186189f42b1832e8c854c5d83 (diff)
Merge "Use io.fabric8:docker-maven-plugin to build and push docker images"
Diffstat (limited to 'packages/pom.xml')
-rw-r--r--packages/pom.xml33
1 files changed, 22 insertions, 11 deletions
diff --git a/packages/pom.xml b/packages/pom.xml
index ff083186..956ed0d1 100644
--- a/packages/pom.xml
+++ b/packages/pom.xml
@@ -3,6 +3,7 @@
ONAP Policy Engine - Drools PDP
================================================================================
Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ Modifications Copyright (C) 2019 Bell Canada.
================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -18,25 +19,35 @@
============LICENSE_END=========================================================
-->
-<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">
-
+<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>
<groupId>org.onap.policy.drools-pdp</groupId>
<artifactId>drools-pdp</artifactId>
<version>1.5.0-SNAPSHOT</version>
</parent>
-
<artifactId>packages</artifactId>
<packaging>pom</packaging>
-
<name>Policy Packages</name>
<description>ONAP Policy Drools PDP Installation Packages</description>
-
- <modules>
- <module>base</module>
- <module>install</module>
- <module>docker</module>
- </modules>
+ <profiles>
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ </profile>
+ <profile>
+ <id>docker</id>
+ <modules>
+ <module>base</module>
+ <module>install</module>
+ <module>docker</module>
+ </modules>
+ <properties>
+ <docker.skip.push>false</docker.skip.push>
+ </properties>
+ </profile>
+ </profiles>
</project>