diff options
author | Michael Mokry <michael.mokry@att.com> | 2019-02-13 10:34:48 -0600 |
---|---|---|
committer | Michael Mokry <michael.mokry@att.com> | 2019-02-13 10:38:31 -0600 |
commit | ab1824d122b50d29e000bb58521d8dace9cba2b6 (patch) | |
tree | 609f95d0b9df7d0386c3b50846e8a99674cd4486 /packages/pom.xml | |
parent | f239a66e5dd52f4f0149a307789909c5ffc2b704 (diff) |
Package and Create Docker Image for Xacml PDP
- Creates docker image of policy xacml-pdp
- Creates zip package of policy xacml-pdp
- Also committed changes from Healthcheck/Statitics review that were
allowed to be deferred
Change-Id: Ia5fb72be05a30a341692453fe4ff32c7b112e861
Issue-ID: POLICY-1436
Signed-off-by: Michael Mokry <michael.mokry@att.com>
Diffstat (limited to 'packages/pom.xml')
-rw-r--r-- | packages/pom.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/packages/pom.xml b/packages/pom.xml new file mode 100644 index 00000000..34bdbe85 --- /dev/null +++ b/packages/pom.xml @@ -0,0 +1,54 @@ +<!-- + ============LICENSE_START======================================================= + ONAP Policy Engine - XACML PDP + ================================================================================ + Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + ============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"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.onap.policy.xacml-pdp</groupId> + <artifactId>policy-xacml-pdp</artifactId> + <version>2.0.0-SNAPSHOT</version> + </parent> + + <artifactId>packages</artifactId> + <packaging>pom</packaging> + + <name>${project.artifactId}</name> + <description>The module for packaging the Xacml PDP component</description> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + </profile> + <profile> + <id>docker</id> + <modules> + <module>policy-xacmlpdp-tarball</module> + <module>policy-xacmlpdp-docker</module> + </modules> + <properties> + <docker.skip.push>false</docker.skip.push> + </properties> + </profile> + </profiles> +</project> |