Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - XACML PDP |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. |
| 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.xacml-pdp</groupId> |
| 26 | <artifactId>policy-xacml-pdp</artifactId> |
| 27 | <version>2.0.0-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | |
| 30 | <artifactId>main</artifactId> |
| 31 | |
| 32 | <name>${project.artifactId}</name> |
| 33 | <description>The main module of Policy PDP-X that handles startup, lifecycle management, and parameters.</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.policy.common</groupId> |
| 38 | <artifactId>capabilities</artifactId> |
| 39 | <version>${policy.common.version}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.policy.common</groupId> |
| 43 | <artifactId>policy-endpoints</artifactId> |
| 44 | <version>${policy.common.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>commons-cli</groupId> |
| 48 | <artifactId>commons-cli</artifactId> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>com.google.code.gson</groupId> |
| 52 | <artifactId>gson</artifactId> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.onap.policy.common</groupId> |
| 56 | <artifactId>common-parameters</artifactId> |
| 57 | <version>${policy.common.version}</version> |
| 58 | </dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 59 | <dependency> |
| 60 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 61 | <artifactId>common</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 66 | <artifactId>monitoring</artifactId> |
| 67 | <version>${project.version}</version> |
| 68 | </dependency> |
Pamela Dragosh | 59c38b6 | 2019-03-15 14:30:00 -0400 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 71 | <artifactId>guard</artifactId> |
| 72 | <version>${project.version}</version> |
| 73 | </dependency> |
Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame^] | 74 | <dependency> |
| 75 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 76 | <artifactId>optimization</artifactId> |
| 77 | <version>${project.version}</version> |
| 78 | </dependency> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 79 | </dependencies> |
| 80 | |
| 81 | <build> |
| 82 | <resources> |
| 83 | <!-- Output the version of the pdpx service --> |
| 84 | <resource> |
| 85 | <directory>src/main/resources</directory> |
| 86 | <filtering>true</filtering> |
| 87 | <includes> |
| 88 | <include>**/version.txt</include> |
| 89 | </includes> |
| 90 | </resource> |
| 91 | <resource> |
| 92 | <directory>src/main/resources</directory> |
| 93 | <filtering>false</filtering> |
| 94 | <excludes> |
| 95 | <exclude>**/version.txt</exclude> |
| 96 | </excludes> |
| 97 | </resource> |
| 98 | </resources> |
| 99 | </build> |
| 100 | |
| 101 | </project> |